2009-09-20 11:24:16 +04:00
|
|
|
<fieldset id="date-range" class="collapsible">
|
|
|
|
<legend onclick="toggleFieldset(this);"><%= l(:label_date_range) %></legend>
|
|
|
|
<div>
|
2008-04-01 23:40:40 +04:00
|
|
|
<p>
|
|
|
|
<%= radio_button_tag 'period_type', '1', !@free_period %>
|
|
|
|
<%= select_tag 'period', options_for_period_select(params[:period]),
|
|
|
|
:onchange => 'this.form.onsubmit();',
|
|
|
|
:onfocus => '$("period_type_1").checked = true;' %>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<%= radio_button_tag 'period_type', '2', @free_period %>
|
2008-04-07 21:56:32 +04:00
|
|
|
<span onclick="$('period_type_2').checked = true;">
|
2009-03-13 22:03:34 +03:00
|
|
|
<%= l(:label_date_from_to, :start => (text_field_tag('from', @from, :size => 10) + calendar_for('from')),
|
|
|
|
:end => (text_field_tag('to', @to, :size => 10) + calendar_for('to'))) %>
|
2008-04-07 21:56:32 +04:00
|
|
|
</span>
|
2008-04-01 23:40:40 +04:00
|
|
|
</p>
|
2009-09-20 11:24:16 +04:00
|
|
|
</div>
|
2008-04-01 23:40:40 +04:00
|
|
|
</fieldset>
|
2009-09-20 11:24:16 +04:00
|
|
|
<p class="buttons">
|
|
|
|
<%= link_to_remote l(:button_apply),
|
|
|
|
{ :url => { },
|
|
|
|
:update => "content",
|
2009-09-25 04:39:02 +04:00
|
|
|
:with => "Form.serialize('query_form')",
|
|
|
|
:method => :get
|
2009-09-20 11:24:16 +04:00
|
|
|
}, :class => 'icon icon-checked' %>
|
|
|
|
</p>
|
2008-04-05 20:40:26 +04:00
|
|
|
|
|
|
|
<div class="tabs">
|
|
|
|
<% url_params = @free_period ? { :from => @from, :to => @to } : { :period => params[:period] } %>
|
|
|
|
<ul>
|
2010-10-06 22:23:45 +04:00
|
|
|
<li><%= link_to(l(:label_details), url_params.merge({:controller => 'timelog', :action => 'index', :project_id => @project, :issue_id => @issue }),
|
|
|
|
:class => (@controller.action_name == 'index' ? 'selected' : nil)) %></li>
|
2010-10-05 20:07:17 +04:00
|
|
|
<li><%= link_to(l(:label_report), url_params.merge({:controller => 'time_entry_reports', :action => 'report', :project_id => @project, :issue_id => @issue}),
|
2008-04-05 20:40:26 +04:00
|
|
|
:class => (@controller.action_name == 'report' ? 'selected' : nil)) %></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|