diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-18 16:29:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-18 16:29:23 +0000 |
commit | 3c42abe07e12932a6e839ab3f635f86745cb39ed (patch) | |
tree | 38c7f2d1551b32a1ffd20488b53bc523b7ea22b3 /app/views | |
parent | 11cc0a48576bbbdf8c7d347409dce3555d05a92b (diff) | |
download | redmine-3c42abe07e12932a6e839ab3f635f86745cb39ed.tar.gz redmine-3c42abe07e12932a6e839ab3f635f86745cb39ed.zip |
Added the ability to unassign issues with bulk edit.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@850 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_bulk_edit_form.rhtml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/issues/_bulk_edit_form.rhtml b/app/views/issues/_bulk_edit_form.rhtml index a98c1f399..6ed947428 100644 --- a/app/views/issues/_bulk_edit_form.rhtml +++ b/app/views/issues/_bulk_edit_form.rhtml @@ -13,7 +13,9 @@ </p> <p> <label><%= l(:field_assigned_to) %>: -<%= select_tag('assigned_to_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.assignable_users, :id, :name)) %></label> +<%= select_tag('assigned_to_id', content_tag('option', l(:label_no_change_option)) + + content_tag('option', l(:label_nobody), :value => 'none') + + options_from_collection_for_select(@project.assignable_users, :id, :name)) %></label> <label><%= l(:field_fixed_version) %>: <%= select_tag('fixed_version_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.versions, :id, :name)) %></label> </p> |