##// 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:

r14347:c29727dd39fa
r14351:68620da79ab5
Show More
_list.html.erb
39 lines | 1.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}) do -%>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <%= hidden_field_tag 'back_url', url_for(params) %>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 <div class="autoscroll">
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <table class="list time-entries">
<thead>
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <tr>
<th class="checkbox hide-when-print">
Jean-Philippe Lang
Replaces the link with a checkbox to select/unselect all items in the list....
r14347 <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
</th>
<% @query.inline_columns.each do |column| %>
<%= column_header(column) %>
<% end %>
<th></th>
</tr>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </thead>
<tbody>
<% entries.each do |entry| -%>
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu">
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td>
<%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="buttons">
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <% if entry.editable_by?(User.current) -%>
<%= link_to image_tag('edit.png'), edit_time_entry_path(entry),
:title => l(:button_edit) %>
<%= link_to image_tag('delete.png'), time_entry_path(entry),
:data => {:confirm => l(:text_are_you_sure)},
:method => :delete,
:title => l(:button_delete) %>
<% end -%>
</td>
</tr>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <% end -%>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304 </tbody>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </table>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 </div>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <% end -%>
<%= context_menu time_entries_context_menu_path %>