rails-guide-store/app/views/products/show.html.erb

16 lines
451 B
Text
Raw Permalink Normal View History

2025-01-24 17:32:29 +00:00
<%= image_tag @product.featured_image if @product.featured_image.attached? %>
<% cache @product do %>
<h1><%= @product.name %></h1>
<%= @product.description %>
<% end %>
2025-01-24 19:11:47 +00:00
<%= render "inventory", product: @product %>
2025-01-24 17:32:29 +00:00
<% 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 %>