Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / views / rentable_policy / list.rhtml
1 <h1>Rental Policies</h1>
2
3 <table border="1">
4   <tr>
5     <th>Description</th>
6     <th>Quantity</th>
7   </tr>
8   
9 <% for rentable_policy in @rentable_policies %>
10   <tr>
11     <td><%=h rentable_policy.description %></td>
12     <td><%=h rentable_policy.value %></td>
13     <td><%= link_to 'Edit', :action => 'edit', :id => rentable_policy %></td>
14   </tr>
15 <% end %>
16 </table>
17
18 <%= link_to 'Previous page', { :page => @rentable_policy_pages.current.previous } if @rentable_policy_pages.current.previous %>
19 <%= link_to 'Next page', { :page => @rentable_policy_pages.current.next } if @rentable_policy_pages.current.next %> 
20
21 <br />