<%= link_to l(:label_spent_time), time_entries_path(:user_id => 'me') %> (<%= l(:label_last_n_days, 7) %>)

<% entries = timelog_items entries_by_day = entries.group_by(&:spent_on) %> <% if User.current.allowed_to?(:log_time, nil, :global => true) %>
<%= link_to l(:button_log_time), new_time_entry_path, :class => "icon icon-add" %>
<% end %>

<%= l(:label_total_time) %>: <%= html_hours("%.2f" % entries.sum(&:hours).to_f) %>

<% if entries.any? %> <% entries_by_day.keys.sort.reverse.each do |day| %> <% entries_by_day[day].each do |entry| -%> <% end -%> <% end -%>
<%= l(:label_activity) %> <%= l(:label_project) %> <%= l(:field_comments) %> <%= l(:field_hours) %>
<%= day == Date.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 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}, :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete) %> <% end -%>
<% end %>