<%=h rentable.id %> |
<% if Game.find(:first, :conditions => "rentable_id='#{rentable.id}'") %>
Game
<% elsif Video.find(:first, :conditions => "rentable_id='#{rentable.id}'") %>
Video
<% else %>
ERROR
<% end %>
|
<% for column in Rentable.content_columns %>
<%=h rentable.send(column.name) %> |
<% end %>
<%= link_to 'Show', :action => 'show', :id => rentable %> |
<%= link_to 'Edit', :action => 'edit', :id => rentable %> |
<%= link_to 'Destroy', { :action => 'destroy', :id => rentable }, :confirm => 'Are you sure?', :method => :post %> |
<% end %>