OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/cost_objects/show.html.erb

52 lines
2.4 KiB

<%= render :partial => 'shared/costs_header' %>
<div class="contextual">
<%= link_to_if_authorized l(:button_update), {:controller => 'cost_objects', :action => 'edit', :id => @cost_object}, :onclick => 'showAndScrollTo("update", "cost_object_description"); return false;', :class => 'icon icon-edit', :accesskey => accesskey(:edit) %>
<%= link_to_if_authorized l(:button_copy), {:controller => 'cost_objects', :action => 'copy', :id => @cost_object }, :class => 'icon icon-copy' %>
<%= link_to_if_authorized l(:button_delete), {:controller => 'cost_objects', :action => 'destroy', :id => @cost_object}, :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del' %>
</div>
<h2><%= l(:label_cost_object_id, :id => @cost_object.id) %></h2>
<div class="<%= @cost_object.css_classes %> details">
<h3><%=h @cost_object.subject %></h3>
<p class="author">
<%= authoring @cost_object.created_on, @cost_object.author %>.
<%= l(:label_updated_time, distance_of_time_in_words(Time.now, @cost_object.updated_on)) + '.' if @cost_object.created_on != @cost_object.updated_on %>
</p>
<table width="100%">
<tr>
<td style="width:15%" class="type"><strong><%= CostObject.human_attribute_name(:type) %>:</strong></td>
<td style="width:35%" class="type"><%= @cost_object.type_label %></td>
<td style="width:15%" class="due-date"><strong><%= CostObject.human_attribute_name(:fixed_date) %>:</strong></td>
<td style="width:35%"><%= format_date(@cost_object.fixed_date) %></td>
</tr>
<tr>
<td class="progress"><strong><%= CostObject.human_attribute_name(:budget_ratio) %>:</strong></td>
<td class="progress"><%= extended_progress_bar(@cost_object.budget_ratio, :width => '80px', :legend => "#{@cost_object.budget_ratio}%") %></td>
</tr>
</table>
<p><strong><%= CostObject.human_attribute_name(:description) %></strong></p>
<div class="wiki">
<%= textilizable @cost_object, :description, :attachments => @cost_object.attachments %>
</div>
<%= link_to_attachments @cost_object %>
<%= render :partial => "show_variable_cost_object" %>
</div>
<div style="clear: both;"></div>
<% if authorize_for('cost_objects', 'edit') %>
<div id="update" style="display:none;">
<h3><%= l(:button_update) %></h3>
<%= render :partial => 'edit' %>
</div>
<% end %>
<% html_title "#{l(:label_cost_object)} ##{@cost_object.id}: #{@cost_object.subject}" %>