%#-- 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.
++#%>
<%= render :partial => 'shared/costs_header' %>
<% html_title "#{t(:label_cost_object_id, id: @cost_object.id)}: #{@cost_object.subject}" %>
<%= toolbar title: t(:label_cost_object_id, id: @cost_object.id) do %>
<% if authorize_for(:cost_objects, :edit) %>
<%= link_to({ controller: 'cost_objects', action: 'edit', id: @cost_object }, class: 'button', accesskey: accesskey(:edit)) do %>
<%= t(:button_update) %>
<% end %>
<% end %>
<% if authorize_for(:cost_objects, :copy) %>
<%= link_to({ controller: 'cost_objects', action: 'copy', id: @cost_object }, class: 'button') do %>
<%= t(:button_copy) %>
<% end %>
<% end %>
<% if authorize_for(:cost_objects, :copy) %>
<%= link_to({ controller: 'cost_objects', action: 'destroy', id: @cost_object }, class: 'button', method: :delete, data: { confirm: t(:text_are_you_sure)}) do %>
<%= t(:button_delete) %>
<% end %>
<% end %>
<% end %>
<%=h @cost_object.subject %>
<%= authoring @cost_object.created_on, @cost_object.author %>.
<%= t(:label_updated_time, value: distance_of_time_in_words(Time.now, @cost_object.updated_on)) + '.' if @cost_object.created_on != @cost_object.updated_on %>
<%= CostObject.human_attribute_name(:type) %>
<%= @cost_object.type_label %>
<%= CostObject.human_attribute_name(:fixed_date) %>
<%= format_date(@cost_object.fixed_date) %>
<%= CostObject.human_attribute_name(:budget_ratio) %>
<%= extended_progress_bar(@cost_object.budget_ratio,
:width => '80px',
:legend => @cost_object.budget_ratio) %>
<% unless format_text(@cost_object, :description, :attachments => @cost_object.attachments).empty? %>
<%= CostObject.human_attribute_name(:description) %>
<%= format_text @cost_object, :description, :attachments => @cost_object.attachments %>
<% end %>
<%= link_to_attachments @cost_object %>
<%= render :partial => "show_variable_cost_object" %>
<% if authorize_for('cost_objects', 'edit') %>
<%= t(:button_update) %>
<%= render :partial => 'edit' %>
<% end %>