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