1 <h1>Search Results for '<%= @query[0].to_s %>'</h1>
3 <% if @merchandises.empty? %>
4 <p>Sorry, there were no results</p>
8 <th>Merchandise ID</th>
10 <th>Quantity Remaining</th>
11 <th>Price Per Unit</th>
14 <% for merchandise in @merchandises %>
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>