Listing merchandises

<% 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 %>
<%= link_to 'Previous page', { :page => @merchandise_pages.current.previous } if @merchandise_pages.current.previous %> <%= link_to 'Next page', { :page => @merchandise_pages.current.next } if @merchandise_pages.current.next %>
<%= link_to 'New merchandise', :action => 'new' %>