retest/app/views/gem_crafts/show.html.erb

35 lines
541 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<strong>Name:</strong>
<%= @gem_craft.name %>
</p>
<p>
<strong>Price:</strong>
<%= @gem_craft.price %>
</p>
<p>
<strong>Books type:</strong>
<%= @gem_craft.books_type %>
</p>
<p>
<strong>Books qnt:</strong>
<%= @gem_craft.books_qnt %>
</p>
<p>
<strong>Previous:</strong>
<%= @gem_craft.previous_id %>
</p>
<p>
<strong>Previous qnt:</strong>
<%= @gem_craft.previous_qnt %>
</p>
<%= link_to 'Edit', edit_gem_craft_path(@gem_craft) %> |
<%= link_to 'Back', gem_crafts_path %>