1 <h1>Listing rentables</h1>
7 <% for column in Rentable.content_columns %>
8 <th><%= column.human_name %></th>
12 <% for rentable in @rentables %>
14 <td><%=h rentable.id %></td>
16 <% if Game.find(:first, :conditions => "rentable_id='#{rentable.id}'") %>
18 <% elsif Video.find(:first, :conditions => "rentable_id='#{rentable.id}'") %>
24 <% for column in Rentable.content_columns %>
25 <td><%=h rentable.send(column.name) %></td>
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>
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 %>
39 <%= link_to 'New rentable', :action => 'new' %>