@@ -48,4 +48,8 | |||
|
48 | 48 | <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p> |
|
49 | 49 | <% end %> |
|
50 | 50 | |
|
51 | <% if Redmine::Plugin::Hook.hook_registered?(:issue_edit) %> | |
|
52 | <%= Redmine::Plugin::Hook.call_hook(:issue_edit, {:project => @project, :issue => @issue, :form => f }) %> | |
|
53 | <% end %> | |
|
54 | ||
|
51 | 55 | <%= wikitoolbar_for 'issue_description' %> |
@@ -38,6 +38,9 | |||
|
38 | 38 | <label><%= l(:field_done_ratio) %>: |
|
39 | 39 | <%= select_tag 'done_ratio', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></label> |
|
40 | 40 | </p> |
|
41 | <% if Redmine::Plugin::Hook.hook_registered?(:issue_bulk_edit) %> | |
|
42 | <%= Redmine::Plugin::Hook.call_hook(:issue_bulk_edit, {:project => @project, :issue => @issues }) %> | |
|
43 | <% end %> | |
|
41 | 44 | </fieldset> |
|
42 | 45 | |
|
43 | 46 | <fieldset><legend><%= l(:field_notes) %></legend> |
General Comments 0
You need to be logged in to leave comments.
Login now