1 <h1>Listing rentables</h1>
5 <% for column in Rentable.content_columns %>
6 <th><%= column.human_name %></th>
10 <% for rentable in @rentables %>
12 <% for column in Rentable.content_columns %>
13 <td><%=h rentable.send(column.name) %></td>
15 <td><%= link_to 'Show', :action => 'show', :id => rentable %></td>
16 <td><%= link_to 'Edit', :action => 'edit', :id => rentable %></td>
17 <td><%= link_to 'Destroy', { :action => 'destroy', :id => rentable }, :confirm => 'Are you sure?', :method => :post %></td>
22 <%= link_to 'Previous page', { :page => @rentable_pages.current.previous } if @rentable_pages.current.previous %>
23 <%= link_to 'Next page', { :page => @rentable_pages.current.next } if @rentable_pages.current.next %>
27 <%= link_to 'New rentable', :action => 'new' %>