Listing Charges for <%= @charge_set.name %>

<% form_tag( { :action => 'bulk_edit_move_or_destroy' }, { :name => 'bulk_edit_move_or_destroy' } ) do -%> <% for charge in @charges %> <% end %>
Select Date Description Chips Used Chip Cost Labeling Cost Hybridization Cost QC Cost Other Cost Edit Destroy
<%= check_box 'selected_charges', charge.id %> <%= charge.date %> <%= charge.description %> <%= charge.chips_used %> <%= fmt_dollars(charge.chip_cost) %> <%= fmt_dollars(charge.labeling_cost) %> <%= fmt_dollars(charge.hybridization_cost) %> <%= fmt_dollars(charge.qc_cost) %> <%= fmt_dollars(charge.other_cost) %> <%= link_to 'Edit', :action => 'edit', :id => charge %> <%= link_to 'Destroy', { :action => 'destroy', :id => charge }, :confirm => 'Are you sure?' %>

<%= submit_tag 'Set Field' %> To

<%= submit_tag 'Move Charges To This Charge Set' %>

<%= submit_tag 'Delete Charges' %>

<% end -%>
<%= link_to 'Back to Charge Sets', :controller => 'charge_sets', :action => 'list' %> | <%= link_to 'New charge', :action => 'new', :charge_set_id => @charge_set.id %>