rails-guide-store/app/views/products/show.html.erb
Bill Niblock ef378a1f59
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
Dump
2025-01-24 12:32:29 -05:00

13 lines
405 B
Text

<%= image_tag @product.featured_image if @product.featured_image.attached? %>
<% cache @product do %>
<h1><%= @product.name %></h1>
<%= @product.description %>
<% end %>
<% 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 %>