_list.html.erb
41 lines
| 1.5 KiB
| text/plain
|
TextLexer
|
r9346 | <%= form_tag({}) do -%> | ||
|
r5194 | <%= hidden_field_tag 'back_url', url_for(params) %> | ||
|
r7862 | <div class="autoscroll"> | ||
|
r1159 | <table class="list time-entries"> | ||
<thead> | ||||
|
r10745 | <tr> | ||
<th class="checkbox hide-when-print"> | ||||
<%= link_to image_tag('toggle_check.png'), | ||||
{}, | ||||
:onclick => 'toggleIssuesSelection(this); return false;', | ||||
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> | ||||
</th> | ||||
<% @query.inline_columns.each do |column| %> | ||||
<%= column_header(column) %> | ||||
<% end %> | ||||
<th></th> | ||||
</tr> | ||||
|
r1159 | </thead> | ||
<tbody> | ||||
<% entries.each do |entry| -%> | ||||
|
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 %> | ||||
<td align="center"> | ||||
<% 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> | ||||
|
r1159 | <% end -%> | ||
|
r1304 | </tbody> | ||
|
r1159 | </table> | ||
|
r7862 | </div> | ||
|
r5194 | <% end -%> | ||
<%= context_menu time_entries_context_menu_path %> | ||||