Listing Inventory Check

<% if @inventory_checks.size > 0 %> <% for inventory_check in @inventory_checks %> <% end %>
Date Lab Group Chip Type Number Expected Number Counted Edit Destroy
<%=h inventory_check.date %> <%=h LabGroup.find(inventory_check.lab_group_id).name %> <%=h ChipType.find(inventory_check.chip_type_id).name %> <%=h inventory_check.number_expected %> <%=h inventory_check.number_counted %> <%= link_to 'Edit', :action => 'edit', :id => inventory_check %> <%= link_to 'Destroy', { :action => 'destroy', :id => inventory_check }, :confirm => 'Are you sure?' %>
<% else %>

There are currently no inventory checks

<% end %> <%= link_to 'New inventory_check', :action => 'new' %>