kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
40 lines
2.6 KiB
40 lines
2.6 KiB
<% form_tag({}) do -%>
|
|
|
|
<%-
|
|
show_labor = User.current.allowed_to?(:view_all_rates, @project)
|
|
show_material = User.current.allowed_to?(:view_unit_price, @project)
|
|
-%>
|
|
|
|
<table class="list deliverables">
|
|
<thead><tr>
|
|
<th><%= link_to image_tag('toggle_check.png'), {}, :onclick => 'toggleIssuesSelection(Element.up(this, "form")); return false;',
|
|
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
|
|
</th>
|
|
<%= sort_header_tag("id", :caption => '#', :default_order => 'desc') %>
|
|
<%= sort_header_tag("status", :caption => l(:caption_status), :default_order => 'desc') %>
|
|
<%= sort_header_tag("subject", :caption => l(:caption_subject)) %>
|
|
<%= sort_header_tag("total_budget", :caption => l(:caption_budget)) if show_labor && show_material %>
|
|
<%= sort_header_tag("labor_budget", :caption => l(:caption_labor_budget)) if show_labor %>
|
|
<%= sort_header_tag("material_budget", :caption => l(:caption_material_budget)) if show_material %>
|
|
<%= sort_header_tag("spent", :caption => l(:caption_spent)) %>
|
|
<%= sort_header_tag("budget_ratio", :caption => l(:caption_budget_ratio)) %>
|
|
<%= sort_header_tag("fixed_date", :caption => l(:caption_fixed_date)) %>
|
|
</tr></thead>
|
|
<tbody>
|
|
<% deliverables.each do |deliverable| %>
|
|
<tr id="deliverable-<%= deliverable.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= deliverable.css_classes %>">
|
|
<td class="checkbox"><%= check_box_tag("ids[]", deliverable.id, false, :id => nil) %></td>
|
|
<td><%= link_to deliverable.id, :controller => 'deliverables', :action => 'show', :id => deliverable %></td>
|
|
<%= content_tag(:td, l(deliverable.status), :class => 'status') %>
|
|
<%= content_tag(:td, link_to(h(deliverable.subject), :controller => 'deliverables', :action => 'show', :id => deliverable), :class => 'subject') %>
|
|
<%= content_tag(:td, number_to_currency(deliverable.budget || 0.0, :precision => 0), :class => 'currency') if show_labor && show_material %>
|
|
<%= content_tag(:td, number_to_currency(deliverable.labor_budget || 0.0, :precision => 0), :class => 'currency') if show_labor %>
|
|
<%= content_tag(:td, number_to_currency(deliverable.material_budget || 0.0, :precision => 0), :class => 'currency') if show_material %>
|
|
<%= content_tag(:td, number_to_currency(deliverable.spent, :precision => 0), :class => 'currency') %>
|
|
<%= content_tag(:td, extended_progress_bar(deliverable.budget_ratio, :width => '100%')) %>
|
|
<%= content_tag(:td, format_date(deliverable.fixed_date), :class => 'fixed_date') %>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end -%> |