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

<%= start_form_tag :action => 'move' %> <% 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 'Move Charges To This Charge Set' %>

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