2b0db697b2cef6ae20b3891ab54d504e9237e646
[cs356-p2-videostore.git] / app / views / coitem / list.rhtml
1 <h1>Listing Checked Out Items</h1>
2
3 <table border="1">
4   <tr>
5     <th>Customer</th>
6     <th>Rentable</th>
7     <th>Overdue</th>
8     <th>Date Checked Out</th>
9     <th>Due Date</th>
10   </tr>
11   
12 <% for coitem in @coitems %>
13   <tr>
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>
20   </tr>
21 <% end %>
22 </table>
23
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 %> 
26