<h1><%= @product.name.t %></h1> 
<table> 
<tr> 
  <td><strong><%= 'Price'.t %>:</strong></td> 
  <td><%= @product.unit_price %></td> 
</tr> 
<tr> 
  <td><strong><%= 'Quantity'.t %>:</strong></td> 
  <td><%= @product.quantity_on_hand.localize %></td> 
</tr> 
<tr> 
  <td><strong><%= 'Modified'.t %>:</strong></td> 
  <td><%= @product.updated_at.localize("%d %B %Y") %></td> 
</tr> 
</table>