Search Results for '<%= @query[0].to_s %>'

<% if @merchandises.empty? %>

Sorry, there were no results

<% else %> <% for merchandise in @merchandises %> <% end %>
Merchandise ID Title Quantity Remaining Price Per Unit
<%=h merchandise.id %> <%=link_to merchandise.title.to_s, :action => 'show', :id => merchandise %> <%=h merchandise.quantity %> <%=h number_to_currency(merchandise.price) %> <%= link_to 'Edit', :action => 'edit', :id => merchandise %> <%= link_to 'Remove', { :action => 'destroy', :id => merchandise }, :confirm => 'Are you sure?', :method => :post %>
<% end %>