summaryrefslogtreecommitdiffstats
path: root/app/views/issue_categories
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-29 22:54:07 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-29 22:54:07 +0000
commitc01c64e9783dc361d98ca8dc37d2b3a661ae1945 (patch)
tree42c3c5a2b6e59e5a1879601f37d69d4c651911e3 /app/views/issue_categories
parent87742f23edb3bbcbaf12540d2ff510ad8edac09e (diff)
downloadredmine-c01c64e9783dc361d98ca8dc37d2b3a661ae1945.tar.gz
redmine-c01c64e9783dc361d98ca8dc37d2b3a661ae1945.zip
Let the user choose when deleting issues with reported hours (closes #734, #71):
* to delete the hours * to assign the hours to the project * to reassign the hours to another issue git-svn-id: http://redmine.rubyforge.org/svn/trunk@1182 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issue_categories')
-rw-r--r--app/views/issue_categories/destroy.rhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issue_categories/destroy.rhtml b/app/views/issue_categories/destroy.rhtml
index a563736e2..2b61810e7 100644
--- a/app/views/issue_categories/destroy.rhtml
+++ b/app/views/issue_categories/destroy.rhtml
@@ -3,9 +3,9 @@
<% form_tag({}) do %>
<div class="box">
<p><strong><%= l(:text_issue_category_destroy_question, @issue_count) %></strong></p>
-<p><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %><br />
+<p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %></label><br />
<% if @categories.size > 0 %>
-<%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %>:
+<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
<% end %>
</div>