Add overdue handling to checked out items
[cs356-p2-videostore.git] / app / views / coitem / list.rhtml
index e506366..f6514cb 100644 (file)
@@ -4,6 +4,7 @@
   <tr>
   <th>Customer</th>
   <th>Rentable</th>
+  <th>Overdue</th>
   <% for column in Coitem.content_columns %>
     <th><%= column.human_name %></th>
   <% end %>
@@ -13,6 +14,7 @@
   <tr>
   <td><%=h coitem.customer.name %></td>
   <td><%=h coitem.rentable.title %></td>
+  <td><%=h coitem.overdue? %></td>
   <% for column in Coitem.content_columns %>
     <td><%=h coitem.send(column.name) %></td>
   <% end %>