Search Results for '<%= @query[0].to_s %>'

<% if @games.empty? %>

Sorry, there were no results

<% else %> <% for game in @games %> <% end %>
Game ID Checked Out Title New Release Genre Platform
<%=h game.id %> <%=h game.title %> <%=h tf_to_yesno(game.checkedout?) %> <%=h tf_to_yesno(game.newrelease) %> <%=h game.genre %> <%=h game.game_platform %> <%= link_to 'View', :action => 'show', :id => game %> <%= link_to 'Edit', :action => 'edit', :id => game %> <%= link_to 'Remove', { :action => 'destroy', :id => game }, :confirm => 'Are you sure?', :method => :post %>
<% end %>