##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13235:4bfbabfdfa34
r14351:68620da79ab5
Show More
_date_range.html.erb
36 lines | 1.5 KiB | text/plain | TextLexer
/ app / views / timelog / _date_range.html.erb
Jean-Philippe Lang
Wrap filters, options and buttons with extra div (#15362)....
r12370 <div id="query_form_with_buttons" class="hide-when-print">
<div id="query_form_content">
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>">
<legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend>
<div style="<%= @query.new_record? ? "" : "display: none;" %>">
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
</div>
</fieldset>
<fieldset class="collapsible collapsed">
<legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend>
<div style="display: none;">
<table>
<tr>
<td><%= l(:field_column_names) %></td>
Jean-Philippe Lang
Adds an helper for rendering query columns selection....
r11222 <td><%= render_query_columns_selection(@query) %></td>
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 </tr>
</table>
</div>
</fieldset>
Jean-Philippe Lang
Adds TimeEntryQuery for listing time entries....
r10740 </div>
Jean-Philippe Lang
Wrap filters, options and buttons with extra div (#15362)....
r12370 <p class="buttons">
Jean-Philippe Lang
Removed submit_query_form function....
r13235 <%= link_to_function l(:button_apply), '$("#query_form").submit()', :class => 'icon icon-checked' %>
Jean-Philippe Lang
Adds TimeEntryQuery for listing time entries....
r10740 <%= link_to l(:button_clear), {:project_id => @project, :issue_id => @issue}, :class => 'icon icon-reload' %>
Jean-Philippe Lang
Makes tickets and timelogs filters collapsible (UI)....
r2777 </p>
Jean-Philippe Lang
Wrap filters, options and buttons with extra div (#15362)....
r12370 </div>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311
Jean-Philippe Lang
Wrap filters, options and buttons with extra div (#15362)....
r12370 <div class="tabs hide-when-print">
Jean-Philippe Lang
Adds TimeEntryQuery for listing time entries....
r10740 <% query_params = params.slice(:f, :op, :v, :sort) %>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311 <ul>
Jean-Philippe Lang
Removes routes for time entries nested under project/issues....
r13060 <li><%= link_to(l(:label_details), _time_entries_path(@project, @issue, query_params),
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 :class => (action_name == 'index' ? 'selected' : nil)) %></li>
Jean-Philippe Lang
Removes routes for time entries nested under project/issues....
r13060 <li><%= link_to(l(:label_report), _report_time_entries_path(@project, @issue, query_params),
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 :class => (action_name == 'report' ? 'selected' : nil)) %></li>
Jean-Philippe Lang
Various timelog report enhancements:...
r1311 </ul>
</div>