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