Massive Cleanup
[cs356-p2-videostore.git] / app / views / game_platform / list.rhtml
1 <h1>Listing game_platforms</h1>
2
3 <table>
4   <tr>
5   <% for column in GamePlatform.content_columns %>
6     <th><%= column.human_name %></th>
7   <% end %>
8   </tr>
9   
10 <% for game_platform in @game_platforms %>
11   <tr>
12   <% for column in GamePlatform.content_columns %>
13     <td><%=h game_platform.send(column.name) %></td>
14   <% end %>
15     <td><%= link_to 'Show', :action => 'show', :id => game_platform %></td>
16     <td><%= link_to 'Edit', :action => 'edit', :id => game_platform %></td>
17     <td><%= link_to 'Destroy', { :action => 'destroy', :id => game_platform }, :confirm => 'Are you sure?', :method => :post %></td>
18   </tr>
19 <% end %>
20 </table>
21
22 <%= link_to 'Previous page', { :page => @game_platform_pages.current.previous } if @game_platform_pages.current.previous %>
23 <%= link_to 'Next page', { :page => @game_platform_pages.current.next } if @game_platform_pages.current.next %> 
24
25 <br />
26
27 <%= link_to 'New game_platform', :action => 'new' %>