Massive Cleanup
[cs356-p2-videostore.git] / app / views / video / searchresults.rhtml
1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
2
3 <% if @videos.empty? %>
4 <p>Sorry, there were no results</p>
5 <% else %>
6 <table border=1>
7   <tr>
8     <th>Video ID</th>
9     <th>Title</th>
10     <th>Checked Out</th>
11     <th>New Release</th>
12     <th>Genre</th>
13     <th>Director</th>
14     <th>Media</th>
15   </tr>
16
17 <% for video in @videos %>
18   <tr>
19     <td><%=h video.id %></td>
20     <td><%=h video.title %></td>
21     <td><%=h tf_to_yesno(video.checkedout?) %></td>
22     <td><%=h tf_to_yesno(video.newrelease) %></td>
23     <td><%=h video.genre.name %></td>
24     <td><%=h video.director %></td>
25     <td><%=h video.media.name %></td>
26     <td><%= link_to 'View', :action => 'show', :id => video %></td>
27     <td><%= link_to 'Edit', :action => 'edit', :id => video %></td>
28     <td><%= link_to 'Remove', { :action => 'destroy', :id => video }, :confirm => 'Are you sure?', :post => true %></td>
29   </tr>
30 <% end %>
31 </table>
32 <% end %>