Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / views / video_policy / list.rhtml
1 <h1>Video Rental Pricing and Policies</h1>
2
3 <table border="1">
4   <tr>
5     <th>Description</th>
6     <th>Fee</th>
7     <th>Period</th>
8   </tr>
9   
10 <% for video_policy in @video_policies %>
11   <tr>
12     <td><%=h video_policy.description %></td>
13     <td><%=h number_to_currency(video_policy.fee) %></td>
14     <td><%=h video_policy.period %> Days</td>
15     <td><%= link_to 'Edit', :action => 'edit', :id => video_policy %></td>
16   </tr>
17 <% end %>
18 </table>
19
20 <%= link_to 'Previous page', { :page => @video_policy_pages.current.previous } if @video_policy_pages.current.previous %>
21 <%= link_to 'Next page', { :page => @video_policy_pages.current.next } if @video_policy_pages.current.next %> 
22