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