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