Commit fdf660e1 authored by Romano Licker's avatar Romano Licker Committed by Holger Just

[#667] linked labels to their elements

parent 2b472d87
...@@ -12,17 +12,17 @@ ...@@ -12,17 +12,17 @@
<% end %> <% end %>
<%= render :partial => 'timelog/date_range' %> <%= render :partial => 'timelog/date_range' %>
<p><%= l(:label_details) %>: <%= select_tag 'columns', options_for_select([[l(:label_year), 'year'], <p><label for='columns'><%= l(:label_details) %></label>: <%= select_tag 'columns', options_for_select([[l(:label_year), 'year'],
[l(:label_month), 'month'], [l(:label_month), 'month'],
[l(:label_week), 'week'], [l(:label_week), 'week'],
[l(:label_day_plural).titleize, 'day']], @columns), [l(:label_day_plural).titleize, 'day']], @columns),
:onchange => "this.form.onsubmit();" %> :onchange => "this.form.onsubmit();" %>
<%= l(:button_add) %>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l_or_humanize(@available_criterias[k][:label]), k]}), <label for='criterias'><%= l(:button_add) %></label>: <%= select_tag('criterias[]', options_for_select([[]] + (@available_criterias.keys - @criterias).collect{|k| [l_or_humanize(@available_criterias[k][:label]), k]}),
:onchange => "this.form.submit();", :onchange => "this.form.submit();",
:style => 'width: 200px', :style => 'width: 200px',
:id => nil, :id => nil,
:disabled => (@criterias.length >= 3)) %> :disabled => (@criterias.length >= 3), :id => "criterias") %>
<%= link_to l(:button_clear), {:project_id => @project, :issue_id => @issue, :period_type => params[:period_type], :period => params[:period], :from => @from, :to => @to, :columns => @columns}, :class => 'icon icon-reload' %></p> <%= link_to l(:button_clear), {:project_id => @project, :issue_id => @issue, :period_type => params[:period_type], :period => params[:period], :from => @from, :to => @to, :columns => @columns}, :class => 'icon icon-reload' %></p>
<% end %> <% end %>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment