To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / timelog / _list.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (2.24 KB)

1 909:cbb26bc654de Chris
<% form_tag({}) do -%>
2 441:cbce1fd3b1b7 Chris
<%= hidden_field_tag 'back_url', url_for(params) %>
3 909:cbb26bc654de Chris
<div class="autoscroll">
4 0:513646585e45 Chris
<table class="list time-entries">
5
<thead>
6
<tr>
7 441:cbce1fd3b1b7 Chris
<th class="checkbox hide-when-print">
8 909:cbb26bc654de Chris
  <%= link_to image_tag('toggle_check.png'),
9
    {},
10
    :onclick => 'toggleIssuesSelection(Element.up(this, "form")); return false;',
11 441:cbce1fd3b1b7 Chris
    :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
12
</th>
13 0:513646585e45 Chris
<%= 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 441:cbce1fd3b1b7 Chris
<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 0:513646585e45 Chris
<td class="spent_on"><%= format_date(entry.spent_on) %></td>
28 909:cbb26bc654de Chris
<td class="user"><%= link_to_user(entry.user) %></td>
29 0:513646585e45 Chris
<td class="activity"><%=h entry.activity %></td>
30 909:cbb26bc654de Chris
<td class="project"><%= link_to_project(entry.project) %></td>
31 0:513646585e45 Chris
<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'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil},
41
                                       :title => l(:button_edit) %>
42
    <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil},
43
                                         :confirm => l(:text_are_you_sure),
44 37:94944d00e43c chris
                                         :method => :delete,
45 0:513646585e45 Chris
                                         :title => l(:button_delete) %>
46
<% end -%>
47
</td>
48
</tr>
49
<% end -%>
50
</tbody>
51
</table>
52 909:cbb26bc654de Chris
</div>
53 441:cbce1fd3b1b7 Chris
<% end -%>
54
55
<%= context_menu time_entries_context_menu_path %>