summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-29 01:16:11 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-29 01:16:11 +0000
commit2446d5b83cea0e9b5ac3a0342af66f4824915b66 (patch)
tree6768a86f902e055c8b9861697bdc2e28dc3fd8d6 /app
parent6505bf80e51d0c04f0111e162b3acfd93e998b4f (diff)
downloadredmine-2446d5b83cea0e9b5ac3a0342af66f4824915b66.tar.gz
redmine-2446d5b83cea0e9b5ac3a0342af66f4824915b66.zip
[#9489] link label to element
Contributed by Romano Licker. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7681 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/admin/projects.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/projects.html.erb b/app/views/admin/projects.html.erb
index 9e0f99ce4..154f82b4b 100644
--- a/app/views/admin/projects.html.erb
+++ b/app/views/admin/projects.html.erb
@@ -6,9 +6,9 @@
<% form_tag({}, :method => :get) do %>
<fieldset><legend><%= l(:label_filter_plural) %></legend>
-<label><%= l(:field_status) %> :</label>
+<label for='status'><%= l(:field_status) %> :</label>
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
-<label><%= l(:label_project) %>:</label>
+<label for='name'><%= l(:label_project) %>:</label>
<%= text_field_tag 'name', params[:name], :size => 30 %>
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
<%= link_to l(:button_clear), {:controller => 'admin', :action => 'projects'}, :class => 'icon icon-reload' %>