<%#-- copyright OpenProject Costs Plugin Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ++#%>
<%= sort_header_tag('spent_on', :caption => t(:label_date), :default_order => 'desc') %> <%= sort_header_tag('user', :caption => Member.model_name.human) %> <%= sort_header_tag('project', :caption => Project.model_name.human )%> <%= sort_header_tag('work_package', :caption => WorkPackage.model_name.human, :default_order => 'desc') %> <%= sort_header_tag('units', :caption => t(:label_units)) %> <%= sort_header_tag('costs', :caption => t(:label_overall_costs)) %> <% entries.each do |entry| -%> <% end -%>
<%= CostEntry.human_attribute_name(:comment) %>
<%= format_date(entry.spent_on) %> <%=h entry.user %> <%=h entry.project %> <% if entry.work_package -%> <%= link_to_work_package entry.work_package -%> <% end -%> <%=h entry.comments %> <%= pluralize(entry.units, entry.cost_type.unit, entry.cost_type.unit_plural) %> <% if entry.costs_visible_by?(User.current) -%> <%= number_to_currency entry.real_costs %> <%- else -%>-<% end -%> <% if entry.editable_by?(User.current) -%> <%= link_to icon_wrapper('icon-context icon-edit',t(:button_edit)), {:controller => '/costlog', :action => 'edit', :id => entry, :project_id => nil}, :class => 'no-decoration-on-hover', :title => t(:button_edit) %> <%= link_to icon_wrapper('icon-context icon-delete',t(:button_delete)), {:controller => '/costlog', :action => 'destroy', :id => entry, :project_id => nil}, :confirm => t(:text_are_you_sure), :method => :delete, :class => 'no-decoration-on-hover', :title => t(:button_delete) %> <% end -%>