blob: cd8925deb501aacff87f1ac3f3d38460f9cf52c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!-- -*- mode: web; -*- -->
<li><%= link_to "Back to homepage", root_path %></li>
<h1><%= @wine.name %></h1>
<h2><%= @wine.year %></h2>
<p><%= @wine.notes %></p>
<ul>
<li><%= link_to "Edit", edit_wine_path(@wine) %></li>
<li><%= link_to "Destroy",
wine_path(@wine),
data: {
turbo_method: :delete,
turbo_confirm: "Are you sure you want to delete #{@wine.name}?"
} %></li>
</ul>
|