comparison app/views/issues/.svn/text-base/bulk_edit.rhtml.svn-base @ 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
comparison
equal deleted inserted replaced
245:051f544170fe 441:cbce1fd3b1b7
46 version_options_for_select(@project.shared_versions.open.sort)) %> 46 version_options_for_select(@project.shared_versions.open.sort)) %>
47 </p> 47 </p>
48 <% end %> 48 <% end %>
49 49
50 <% @custom_fields.each do |custom_field| %> 50 <% @custom_fields.each do |custom_field| %>
51 <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field) %></p> 51 <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %></p>
52 <% end %> 52 <% end %>
53 53
54 <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> 54 <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %>
55 </div> 55 </div>
56 56
57 <div class="splitcontentright"> 57 <div class="splitcontentright">
58 <% if @project && User.current.allowed_to?(:manage_subtasks, @project) %>
59 <p>
60 <label><%= l(:field_parent_issue) %></label>
61 <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %>
62 </p>
63 <div id="parent_issue_candidates" class="autocomplete"></div>
64 <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:project_id => @project) }')" %>
65 <% end %>
58 <p> 66 <p>
59 <label><%= l(:field_start_date) %></label> 67 <label><%= l(:field_start_date) %></label>
60 <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %> 68 <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %>
61 </p> 69 </p>
62 <p> 70 <p>