Make system unable to check out already checked out items
[cs356-p2-videostore.git] / app / views / customer / list.rhtml
index fb29a65..30ffdb6 100644 (file)
@@ -2,6 +2,7 @@
 
 <table>
   <tr>
+  <th>Customer ID</th>
   <% for column in Customer.content_columns %>
     <th><%= column.human_name %></th>
   <% end %>
@@ -9,6 +10,7 @@
   
 <% for customer in @customers %>
   <tr>
+  <td><%=h customer.id %></td>
   <% for column in Customer.content_columns %>
     <td><%=h customer.send(column.name) %></td>
   <% end %>