Listing games

<% for game in @games %> <% end %>
Game ID Checked Out Title New Release Genre Platform
<%=h game.id %> <%=h game.checkedout? %> <%=h game.title %> <%=h game.newrelease %> <%=h game.genre %> <%=h game.game_platform %> <%= link_to 'Show', :action => 'show', :id => game %> <%= link_to 'Edit', :action => 'edit', :id => game %> <%= link_to 'Destroy', { :action => 'destroy', :id => game }, :confirm => 'Are you sure?', :method => :post %>
<%= link_to 'Previous page', { :page => @game_pages.current.previous } if @game_pages.current.previous %> <%= link_to 'Next page', { :page => @game_pages.current.next } if @game_pages.current.next %>
<%= link_to 'New game', :action => 'new' %>