about summary refs log tree commit diff
path: root/app/views/players
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/players')
-rw-r--r--app/views/players/index.html.erb2
-rw-r--r--app/views/players/show.html.erb6
2 files changed, 5 insertions, 3 deletions
diff --git a/app/views/players/index.html.erb b/app/views/players/index.html.erb
index eb209b0..a635ded 100644
--- a/app/views/players/index.html.erb
+++ b/app/views/players/index.html.erb
@@ -18,7 +18,7 @@
           <% if player.paid %>✓
           <% end %></td>
         <td><%= player.strikes %></td>
-        <td><%= link_to "X", player, data: {
+        <td><%= link_to "❌", player, data: {
           turbo_method: :delete,
           turbo_confirm: "Are you sure you want to remove #{player.name}?"
         } %></td>
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>