|
|
|
@ -2,9 +2,6 @@ |
|
|
|
|
|
|
|
|
|
<table class="list cost_objects"> |
|
|
|
|
<thead><tr> |
|
|
|
|
<th><%= link_to image_tag('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 => CostObject.human_attribute_name(:status), :default_order => 'desc') %> |
|
|
|
|
<%= sort_header_tag("subject", :caption => CostObject.human_attribute_name(:subject)) %> |
|
|
|
@ -16,8 +13,7 @@ |
|
|
|
|
<tbody> |
|
|
|
|
<% total_budget = BigDecimal.new("0"); labor_budget = BigDecimal.new("0"); material_budget = BigDecimal.new("0"); spent = BigDecimal.new("0") %> |
|
|
|
|
<% cost_objects.each do |cost_object| %> |
|
|
|
|
<tr id="cost_object-<%= cost_object.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= cost_object.css_classes %>"> |
|
|
|
|
<td class="checkbox"><%= check_box_tag("ids[]", cost_object.id, false, :id => nil) %></td> |
|
|
|
|
<tr id="cost_object-<%= cost_object.id %>" class="<%= cycle('odd', 'even') %> <%= cost_object.css_classes %>"> |
|
|
|
|
<td><%= link_to cost_object.id, cost_object_path(cost_object.id) %></td> |
|
|
|
|
<%= content_tag(:td, l(cost_object.status), :class => 'status') %> |
|
|
|
|
<%= content_tag(:td, link_to(h(cost_object.subject), cost_object_path(cost_object.id), :class => 'subject')) %> |
|
|
|
|