about summary refs log tree commit diff
path: root/app/views/players/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/players/show.html.erb')
-rw-r--r--app/views/players/show.html.erb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/players/show.html.erb b/app/views/players/show.html.erb
index e031050..3d0bb78 100644
--- a/app/views/players/show.html.erb
+++ b/app/views/players/show.html.erb
@@ -1,7 +1,9 @@
-<p style="color: green"><%= notice %></p>
+<% if not notice.nil? %><p style="color: green"><%= notice %></p><% end %>
 
 <%= render "form", player: @player %>
 
 <div>
-  <%= button_to "Delete #{@player.name}", @player, method: :delete %>
+  <%= link_to "Delete #{@player.name} ❌", @player, data: {
+    turbo_method: :delete,
+    turbo_confirm: "Are you sure you want to remove #{@player.name}?"} %>
 </div>