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