<%= l(:label_total_time) %>: <%= html_hours("%.2f" % entries.sum(&:hours).to_f) %>
<%= l(:label_activity) %> | <%= l(:label_project) %> | <%= l(:field_comments) %> | <%= l(:field_hours) %> | |
---|---|---|---|---|
<%= day == User.current.today ? l(:label_today).titleize : format_date(day) %> | <%= html_hours("%.2f" % entries_by_day[day].sum(&:hours).to_f) %> | |||
<%= entry.activity %> | <%= entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %> | <%= entry.comments %> | <%= html_hours("%.2f" % entry.hours) %> | <% if entry.editable_by?(@user) -%> <%= link_to l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry}, :title => l(:button_edit), :class => 'icon-only icon-edit' %> <%= link_to l(:button_delete), {:controller => 'timelog', :action => 'destroy', :id => entry}, :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete), :class => 'icon-only icon-del' %> <% end -%> |