15 lines
451 B
Text
15 lines
451 B
Text
<%= image_tag @product.featured_image if @product.featured_image.attached? %>
|
|
|
|
<% cache @product do %>
|
|
<h1><%= @product.name %></h1>
|
|
<%= @product.description %>
|
|
<% end %>
|
|
|
|
<%= render "inventory", product: @product %>
|
|
|
|
<% if authenticated? %>
|
|
<%= link_to "Edit", edit_product_path(@product) %>
|
|
<%= button_to "Delete", @product, method: :delete,
|
|
data: { turbo_confirm: "Are you certain?" } %>
|
|
<% end %>
|
|
<%= link_to "Back", products_path %>
|