<%= @product.name %>

<%= image_tag @product.image.public_filename, :class => 'product-pic' if @product.image %>
<%= txt2html @product.description if @product.description %>
<% if @product.price %>

<%= _('Price: %s') % ( "%.2f" % @product.price) %>

<% end %>

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

<% button_bar do %> <%= button :back, _("%s's products/services listing") % profile.name, :action => 'index', :id => nil %> <% end %>