Add the game mvc
[cs356-p2-videostore.git] / app / views / rentable / list.rhtml
1 <h1>Listing rentables</h1>
2
3 <table>
4   <tr>
5   <% for column in Rentable.content_columns %>
6     <th><%= column.human_name %></th>
7   <% end %>
8   </tr>
9
10 <% for rentable in @rentables %>
11   <tr>
12   <% for column in Rentable.content_columns %>
13     <td><%=h rentable.send(column.name) %></td>
14   <% end %>
15     <td><%= link_to 'Show', :action => 'show', :id => rentable %></td>
16     <td><%= link_to 'Edit', :action => 'edit', :id => rentable %></td>
17     <td><%= link_to 'Destroy', { :action => 'destroy', :id => rentable }, :confirm => 'Are you sure?', :method => :post %></td>
18   </tr>
19 <% end %>
20 </table>
21
22 <%= link_to 'Previous page', { :page => @rentable_pages.current.previous } if @rentable_pages.current.previous %>
23 <%= link_to 'Next page', { :page => @rentable_pages.current.next } if @rentable_pages.current.next %> 
24
25 <br />
26
27 <%= link_to 'New rentable', :action => 'new' %>