Massive Cleanup
[cs356-p2-videostore.git] / app / views / game / searchresults.rhtml
1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
2
3 <% if @games.empty? %>
4 <p>Sorry, there were no results</p>
5 <% else %>
6 <table border="1">
7   <tr>
8     <th>Game ID</th>
9     <th>Checked Out</th>
10     <th>Title</th>
11     <th>New Release</th>
12     <th>Genre</th>
13     <td>Platform</th>
14   </tr>
15
16 <% for game in @games %>
17   <tr>
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>
27   </tr>
28 <% end %>
29 </table>
30 <% end %>