Mercurial > hg > soundsoftware-site
diff app/views/issues/bulk_edit.rhtml @ 441:cbce1fd3b1b7 redmine-1.2
Update to Redmine 1.2-stable branch (Redmine SVN rev 6000)
author | Chris Cannam |
---|---|
date | Mon, 06 Jun 2011 14:24:13 +0100 |
parents | 8661b858af72 |
children |
line wrap: on
line diff
--- a/app/views/issues/bulk_edit.rhtml Thu Mar 03 11:42:28 2011 +0000 +++ b/app/views/issues/bulk_edit.rhtml Mon Jun 06 14:24:13 2011 +0100 @@ -48,13 +48,21 @@ <% end %> <% @custom_fields.each do |custom_field| %> - <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field) %></p> + <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %></p> <% end %> <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> </div> <div class="splitcontentright"> +<% if @project && User.current.allowed_to?(:manage_subtasks, @project) %> +<p> + <label><%= l(:field_parent_issue) %></label> + <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %> +</p> +<div id="parent_issue_candidates" class="autocomplete"></div> +<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:project_id => @project) }')" %> +<% end %> <p> <label><%= l(:field_start_date) %></label> <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %>