<h1><%= @product.name.t %></h1> 
<table> 
<tr> 
  <td><strong><%= 'Cena'.t %>:</strong></td> 
  <td><%= @product.unit_price %></td> 
</tr> 
<tr> 
  <td><strong><%= 'Ilość'.t %>:</strong></td> 
  <td><%= @product.quantity_on_hand.localize %></td> 
</tr> 
<tr> 
  <td><strong><%= 'Zmodyfikowano'.t %>:</strong></td> 
  <td><%= @product.updated_at.localize("%d %B %Y") %></td> 
</tr> 
</table>