<%= @product.name %>

<%= image_tag @product.image.public_filename if @product.image %>

<%= _('Price:') %> <%= @product.price %>

<%= _('Description:') %> <%= txt2html @product.description if @product.description %>

<%= _('Category:') %> <%= link_to_category(@product.product_category) %>

<%= button :back, _('back'), :action => 'index' %>           <%= button :delete, _('destroy'), :action => 'destroy', :id => @product %> <%= button :edit, _('edit'), :action => 'edit', :id => @product %>