diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 21:55:43 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-17 21:55:43 +0000 |
commit | f64b05604884250b7006defb15ce568460f4ca7a (patch) | |
tree | f2f8f81e1760018d8971e50c36c6e854eaef87bb /app | |
parent | 84aca0cd61ae9838e2bbdaadaee7f565f17986d4 (diff) | |
download | redmine-f64b05604884250b7006defb15ce568460f4ca7a.tar.gz redmine-f64b05604884250b7006defb15ce568460f4ca7a.zip |
replace tabs to spaces at app/views/issues/bulk_edit.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7346 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/bulk_edit.html.erb | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb index cff8055cb..df04ec969 100644 --- a/app/views/issues/bulk_edit.html.erb +++ b/app/views/issues/bulk_edit.html.erb @@ -10,29 +10,29 @@ <div class="splitcontentleft"> <p> - <label><%= l(:field_tracker) %></label> - <%= select_tag('issue[tracker_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, :id, :name)) %> + <label><%= l(:field_tracker) %></label> + <%= select_tag('issue[tracker_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, :id, :name)) %> </p> <% if @available_statuses.any? %> <p> - <label><%= l(:field_status) %></label> - <%= select_tag('issue[status_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %> + <label><%= l(:field_status) %></label> + <%= select_tag('issue[status_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %> </p> <% end %> <p> - <label><%= l(:field_priority) %></label> - <%= select_tag('issue[priority_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %> + <label><%= l(:field_priority) %></label> + <%= select_tag('issue[priority_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %> </p> <p> - <label><%= l(:field_assigned_to) %></label> - <%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') + + <label><%= l(:field_assigned_to) %></label> + <%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') + content_tag('option', l(:label_nobody), :value => 'none') + principals_options_for_select(@assignables)) %> </p> <% if @project %> <p> - <label><%= l(:field_category) %></label> - <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + + <label><%= l(:field_category) %></label> + <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + content_tag('option', l(:label_none), :value => 'none') + options_from_collection_for_select(@project.issue_categories, :id, :name)) %> </p> @@ -40,15 +40,15 @@ <% #TODO: allow editing versions when multiple projects %> <% if @project %> <p> - <label><%= l(:field_fixed_version) %></label> - <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + + <label><%= l(:field_fixed_version) %></label> + <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + content_tag('option', l(:label_none), :value => 'none') + version_options_for_select(@project.shared_versions.open.sort)) %> </p> <% end %> <% @custom_fields.each do |custom_field| %> - <p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %></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 }) %> @@ -57,24 +57,24 @@ <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 %> + <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') %> + <label><%= l(:field_start_date) %></label> + <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %> </p> <p> - <label><%= l(:field_due_date) %></label> - <%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %> + <label><%= l(:field_due_date) %></label> + <%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %> </p> <% if Issue.use_field_for_done_ratio? %> <p> - <label><%= l(:field_done_ratio) %></label> - <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %> + <label><%= l(:field_done_ratio) %></label> + <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %> </p> <% end %> </div> |