OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/issue_boxes/_edit.html.erb

13 lines
492 B

<% html_id = "modal_window_#{SecureRandom.hex(10)}" %>
<div id="<%= html_id %>">
<%
@issue = issue if defined? issue
@changesets = changesets if defined? changesets
@journals = journals if defined? journals
%>
<% form = OpenProject::Backlogs::IssueForm.new(@issue) %>
<%= OpenProject::Backlogs::IssueEditActions.new(@issue, html_id, form.form_id).render(self) %>
<%= form.render(self) %>
<%= OpenProject::Nissue::JournalView.new(@journals, @issue).render(self) %>
</div>