25 lines
356 B
Plaintext
25 lines
356 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<strong>Name:</strong>
|
|
<%= @product.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Qnt:</strong>
|
|
<%= @product.qnt %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Val:</strong>
|
|
<%= @product.val %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Active:</strong>
|
|
<%= @product.active %>
|
|
</p>
|
|
|
|
<%= link_to 'Edit', edit_product_path(@product) %> |
|
|
<%= link_to 'Back', products_path %>
|