_list.rhtml
41 lines
| 1.7 KiB
| text/html+ruby
|
RhtmlLexer
|
r1159 | <table class="list time-entries"> | ||
<thead> | ||||
|
r1304 | <tr> | ||
|
r1159 | <%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %> | ||
|
r2169 | <%= sort_header_tag('user', :caption => l(:label_member)) %> | ||
<%= sort_header_tag('activity', :caption => l(:label_activity)) %> | ||||
<%= sort_header_tag('project', :caption => l(:label_project)) %> | ||||
<%= sort_header_tag('issue', :caption => l(:label_issue), :default_order => 'desc') %> | ||||
|
r1159 | <th><%= l(:field_comments) %></th> | ||
<%= sort_header_tag('hours', :caption => l(:field_hours)) %> | ||||
<th></th> | ||||
|
r1304 | </tr> | ||
|
r1159 | </thead> | ||
<tbody> | ||||
<% entries.each do |entry| -%> | ||||
<tr class="time-entry <%= cycle("odd", "even") %>"> | ||||
<td class="spent_on"><%= format_date(entry.spent_on) %></td> | ||||
|
r1162 | <td class="user"><%=h entry.user %></td> | ||
<td class="activity"><%=h entry.activity %></td> | ||||
<td class="project"><%=h entry.project %></td> | ||||
|
r1159 | <td class="subject"> | ||
|
r1162 | <% if entry.issue -%> | ||
|
r2430 | <%= link_to_issue entry.issue %>: <%= h(truncate(entry.issue.subject, :length => 50)) -%> | ||
|
r1162 | <% end -%> | ||
|
r1159 | </td> | ||
<td class="comments"><%=h entry.comments %></td> | ||||
|
r1162 | <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> | ||
|
r1235 | <td align="center"> | ||
<% if entry.editable_by?(User.current) -%> | ||||
|
r1712 | <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil}, | ||
|
r1235 | :title => l(:button_edit) %> | ||
|
r1712 | <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil}, | ||
|
r1235 | :confirm => l(:text_are_you_sure), | ||
:method => :post, | ||||
:title => l(:button_delete) %> | ||||
<% end -%> | ||||
</td> | ||||
|
r1159 | </tr> | ||
<% end -%> | ||||
|
r1304 | </tbody> | ||
|
r1159 | </table> | ||