##// END OF EJS Templates
Display status change before subject of issue on the activity view otherwise it may be truncated....
Display status change before subject of issue on the activity view otherwise it may be truncated. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1505 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1324:f025b16be747
r1491:2e8b2d5e1312
Show More
_date_range.rhtml
28 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 <fieldset id="filters"><legend><%= l(:label_date_range) %></legend>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <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 %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 <span onclick="$('period_type_2').checked = true;">
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <%= l(:label_date_from) %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 <%= text_field_tag 'from', @from, :size => 10 %> <%= calendar_for('from') %>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 <%= l(:label_date_to) %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 <%= text_field_tag 'to', @to, :size => 10 %> <%= calendar_for('to') %>
</span>
<%= submit_tag l(:button_apply), :name => nil %>
Jean-Philippe Lang
Add predefined date ranges to the time report in the same way as the details view (closes #972). It nows defaults to 'All time'....
r1303 </p>
</fieldset>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311
<div class="tabs">
<% url_params = @free_period ? { :from => @from, :to => @to } : { :period => params[:period] } %>
<ul>
<li><%= link_to(l(:label_details), url_params.merge({:controller => 'timelog', :action => 'details', :project_id => @project }),
:class => (@controller.action_name == 'details' ? 'selected' : nil)) %></li>
<li><%= link_to(l(:label_report), url_params.merge({:controller => 'timelog', :action => 'report', :project_id => @project}),
:class => (@controller.action_name == 'report' ? 'selected' : nil)) %></li>
</ul>
</div>