<%=_('Listing products and services') %>

<% if @products.empty? %> <% end %> <% @products.each do |product| %> <% end %>
<%= _('Product') %> <%= _('Price') %> <%= _('Actions') %>
<%= _('(no product registered yet)') %>
<%= link_to product.name, :action => 'show', :id => product %> <%= product.price %> <%= button :delete, _('Destroy'), :action => 'destroy', :id => product %>
<%= will_paginate @products %> <% button_bar do %> <%= button :add, _('New product or service'), :action => 'new' %> <%= button :back, _('Back'), { :controller => 'profile_editor', :profile => @profile.identifier, :action => 'index' } %> <% end %>