%#-- 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. ++#%>
<%= CostEntry.human_attribute_name(:comment) %>
|
<%= sort_header_tag('units', :caption => t(:label_units)) %>
<%= sort_header_tag('costs', :caption => t(:label_overall_costs)) %>
|||||||
---|---|---|---|---|---|---|---|
<%= 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 -%> |