2008-02-26 21:15:58 +03:00
|
|
|
<table class="list time-entries">
|
|
|
|
<thead>
|
|
|
|
<%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %>
|
|
|
|
<%= sort_header_tag('user_id', :caption => l(:label_member)) %>
|
|
|
|
<%= sort_header_tag('activity_id', :caption => l(:label_activity)) %>
|
2008-02-27 23:50:19 +03:00
|
|
|
<%= sort_header_tag("#{Project.table_name}.name", :caption => l(:label_project)) %>
|
2008-02-26 21:15:58 +03:00
|
|
|
<%= sort_header_tag('issue_id', :caption => l(:label_issue), :default_order => 'desc') %>
|
|
|
|
<th><%= l(:field_comments) %></th>
|
|
|
|
<%= sort_header_tag('hours', :caption => l(:field_hours)) %>
|
|
|
|
<th></th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% entries.each do |entry| -%>
|
|
|
|
<tr class="time-entry <%= cycle("odd", "even") %>">
|
|
|
|
<td class="spent_on"><%= format_date(entry.spent_on) %></td>
|
2008-02-27 23:50:19 +03:00
|
|
|
<td class="user"><%=h entry.user %></td>
|
|
|
|
<td class="activity"><%=h entry.activity %></td>
|
|
|
|
<td class="project"><%=h entry.project %></td>
|
2008-02-26 21:15:58 +03:00
|
|
|
<td class="subject">
|
2008-02-27 23:50:19 +03:00
|
|
|
<% if entry.issue -%>
|
|
|
|
<%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, 50)) -%>
|
|
|
|
<% end -%>
|
2008-02-26 21:15:58 +03:00
|
|
|
</td>
|
|
|
|
<td class="comments"><%=h entry.comments %></td>
|
2008-02-27 23:50:19 +03:00
|
|
|
<td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
|
2008-03-15 00:17:09 +03:00
|
|
|
<td align="center">
|
|
|
|
<% if entry.editable_by?(User.current) -%>
|
|
|
|
<%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry},
|
|
|
|
:title => l(:button_edit) %>
|
|
|
|
<%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry},
|
|
|
|
:confirm => l(:text_are_you_sure),
|
|
|
|
:method => :post,
|
|
|
|
:title => l(:button_delete) %>
|
|
|
|
<% end -%>
|
|
|
|
</td>
|
2008-02-26 21:15:58 +03:00
|
|
|
</tr>
|
|
|
|
<% end -%>
|
|
|
|
</tbdoy>
|
|
|
|
</table>
|