1 <h1>Listing Checked Out Items</h1>
8 <th>Date Checked Out</th>
12 <% for coitem in @coitems %>
14 <td><%=h coitem.customer.name %></td>
15 <td><%=h coitem.rentable.title %></td>
16 <td><%=h tf_to_yesno(coitem.overdue?) %></td>
17 <td><%=h coitem.out_date %></td>
18 <td><%=h coitem.due_date %></td>
19 <td><%= link_to 'View', :action => 'show', :id => coitem %></td>
24 <%= link_to 'Previous page', { :page => @coitem_pages.current.previous } if @coitem_pages.current.previous %>
25 <%= link_to 'Next page', { :page => @coitem_pages.current.next } if @coitem_pages.current.next %>