##// END OF EJS Templates
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152)....
Remove the limitation on characters that can be used in custom_field, issue_status, role, tracker, user names (#5152). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4599 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4121:2ecca7e4df96
r4479:44ffc5a3365f
Show More
_date_range.rhtml
36 lines | 1.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <fieldset id="date-range" class="collapsible">
<legend onclick="toggleFieldset(this);"><%= l(:label_date_range) %></legend>
<div>
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
Adds a lang string with arguments for date ranges (#2305)....
r2519 <%= 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'))) %>
Jean-Philippe Lang
Fix date range filter js behaviour and css fix for IE....
r1324 </span>
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>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 </div>
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 </fieldset>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 <p class="buttons">
<%= link_to_remote l(:button_apply),
{ :url => { },
:update => "content",
Eric Davis
Fixed a bug where the form would POST causing a routing error. (#3918)...
r2788 :with => "Form.serialize('query_form')",
:method => :get
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 }, :class => 'icon icon-checked' %>
</p>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311
<div class="tabs">
<% url_params = @free_period ? { :from => @from, :to => @to } : { :period => params[:period] } %>
<ul>
Eric Davis
Refactor: rename TimelogController#details to #index...
r4121 <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>
Eric Davis
Refactor: extract TimelogController#report to a new controller class...
r4118 <li><%= link_to(l(:label_report), url_params.merge({:controller => 'time_entry_reports', :action => 'report', :project_id => @project, :issue_id => @issue}),
Jean-Philippe Lang
Various timelog report enhancements:...
r1311 :class => (@controller.action_name == 'report' ? 'selected' : nil)) %></li>
</ul>
</div>