Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / views / merchandise / searchresults.rhtml
1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
2
3 <% if @merchandises.empty? %>
4 <p>Sorry, there were no results</p>
5 <% else %>
6 <table border="1">
7   <tr>
8     <th>Merchandise ID</th>
9     <th>Title</th>
10     <th>Quantity Remaining</th>
11     <th>Price Per Unit</th>
12   </tr>
13
14 <% for merchandise in @merchandises %>
15   <tr>
16     <td><%=h merchandise.id %></td>
17     <td><%=link_to merchandise.title.to_s, :action => 'show', :id => merchandise %></td>
18     <td><%=h merchandise.quantity %></td>
19     <td><%=h number_to_currency(merchandise.price) %></td>
20     <td><%= link_to 'Edit', :action => 'edit', :id => merchandise %></td>
21     <td><%= link_to 'Remove', { :action => 'destroy', :id => merchandise }, :confirm => 'Are you sure?', :method => :post %></td>
22   </tr>
23 <% end %>
24 </table>
25 <% end %>