To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / timelog / _list.html.erb @ 1297:0a574315af3e
History | View | Annotate | Download (2.13 KB)
| 1 |
<%= form_tag({}) do -%>
|
|---|---|
| 2 |
<%= hidden_field_tag 'back_url', url_for(params) %>
|
| 3 |
<div class="autoscroll"> |
| 4 |
<table class="list time-entries"> |
| 5 |
<thead>
|
| 6 |
<tr>
|
| 7 |
<th class="checkbox hide-when-print"> |
| 8 |
<%= link_to image_tag('toggle_check.png'),
|
| 9 |
{},
|
| 10 |
:onclick => 'toggleIssuesSelection(this); return false;',
|
| 11 |
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
|
| 12 |
</th>
|
| 13 |
<%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %>
|
| 14 |
<%= sort_header_tag('user', :caption => l(:label_member)) %>
|
| 15 |
<%= sort_header_tag('activity', :caption => l(:label_activity)) %>
|
| 16 |
<%= sort_header_tag('project', :caption => l(:label_project)) %>
|
| 17 |
<%= sort_header_tag('issue', :caption => l(:label_issue), :default_order => 'desc') %>
|
| 18 |
<th><%= l(:field_comments) %></th> |
| 19 |
<%= sort_header_tag('hours', :caption => l(:field_hours)) %>
|
| 20 |
<th></th> |
| 21 |
</tr>
|
| 22 |
</thead>
|
| 23 |
<tbody>
|
| 24 |
<% entries.each do |entry| -%>
|
| 25 |
<tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> |
| 26 |
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> |
| 27 |
<td class="spent_on"><%= format_date(entry.spent_on) %></td> |
| 28 |
<td class="user"><%= link_to_user(entry.user) %></td> |
| 29 |
<td class="activity"><%=h entry.activity %></td> |
| 30 |
<td class="project"><%= link_to_project(entry.project) %></td> |
| 31 |
<td class="subject"> |
| 32 |
<% if entry.issue -%>
|
| 33 |
<%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%>
|
| 34 |
<% end -%>
|
| 35 |
</td>
|
| 36 |
<td class="comments"><%=h entry.comments %></td> |
| 37 |
<td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> |
| 38 |
<td align="center"> |
| 39 |
<% if entry.editable_by?(User.current) -%>
|
| 40 |
<%= link_to image_tag('edit.png'), edit_time_entry_path(entry),
|
| 41 |
:title => l(:button_edit) %>
|
| 42 |
<%= link_to image_tag('delete.png'), time_entry_path(entry),
|
| 43 |
:data => {:confirm => l(:text_are_you_sure)},
|
| 44 |
:method => :delete,
|
| 45 |
:title => l(:button_delete) %>
|
| 46 |
<% end -%>
|
| 47 |
</td>
|
| 48 |
</tr>
|
| 49 |
<% end -%>
|
| 50 |
</tbody>
|
| 51 |
</table>
|
| 52 |
</div>
|
| 53 |
<% end -%>
|
| 54 |
|
| 55 |
<%= context_menu time_entries_context_menu_path %>
|