1 <h1>Listing coitems</h1>
8 <% for column in Coitem.content_columns %>
9 <th><%= column.human_name %></th>
13 <% for coitem in @coitems %>
15 <td><%=h coitem.customer.name %></td>
16 <td><%=h coitem.rentable.title %></td>
17 <td><%=h coitem.overdue? %></td>
18 <% for column in Coitem.content_columns %>
19 <td><%=h coitem.send(column.name) %></td>
21 <td><%= link_to 'Show', :action => 'show', :id => coitem %></td>
22 <td><%= link_to 'Edit', :action => 'edit', :id => coitem %></td>
23 <td><%= link_to 'Destroy', { :action => 'destroy', :id => coitem }, :confirm => 'Are you sure?', :method => :post %></td>
28 <%= link_to 'Previous page', { :page => @coitem_pages.current.previous } if @coitem_pages.current.previous %>
29 <%= link_to 'Next page', { :page => @coitem_pages.current.next } if @coitem_pages.current.next %>
33 <%= link_to 'New coitem', :action => 'new' %>