1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
4 <p>Sorry, there were no results</p>
16 <% for game in @games %>
18 <td><%=h game.id %></td>
19 <td><%=h game.title %></td>
20 <td><%=h tf_to_yesno(game.checkedout?) %></td>
21 <td><%=h tf_to_yesno(game.newrelease) %></td>
22 <td><%=h game.genre.name %></td>
23 <td><%=h game.platform.name %></td>
24 <td><%= link_to 'View', :action => 'show', :id => game %></td>
25 <td><%= link_to 'Edit', :action => 'edit', :id => game %></td>
26 <td><%= link_to 'Remove', { :action => 'destroy', :id => game }, :confirm => 'Are you sure?', :method => :post %></td>