%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%>
<%= l(:label_total) %>: <%= html_hours("%.2f" % entries.sum(&:hours).to_f) %>
<%= l(:label_activity) %> | <%= Project.model_name.human %> | <%= TimeEntry.human_attribute_name(:comments) %> | <%= TimeEntry.human_attribute_name(:hours) %> | |
---|---|---|---|---|
<%= day == Date.today ? l(:label_today).titleize : format_date(day) %> | <%= html_hours("%.2f" % entries_by_day[day].sum(&:hours).to_f) %> | |||
<%=h entry.activity %> | <%=h entry.project %> <%= ' - '.html_safe + link_to_issue(entry.work_package, :truncate => 50) if entry.work_package%> | <%=h entry.comments %> | <%= html_hours("%.2f" % entry.hours) %> | <% if entry.editable_by?(@user) -%> <%= link_to image_tag('edit.png'), {:controller => '/timelog', :action => 'edit', :id => entry}, :alt => l(:button_edit), :title => l(:button_edit) %> <%= link_to image_tag('delete.png'), {:controller => '/timelog', :action => 'destroy', :id => entry}, :confirm => l(:text_are_you_sure), :method => :delete, :alt => l(:button_delete), :title => l(:button_delete) %> <% end -%> |