pinrails/app/views/players/show.html.erb

10 lines
290 B
Plaintext
Raw Normal View History

2022-01-31 19:28:00 +00:00
<% if not notice.nil? %><p style="color: green"><%= notice %></p><% end %>
2022-01-15 17:10:26 +00:00
2022-01-15 17:32:36 +00:00
<%= render "form", player: @player %>
2022-01-15 17:10:26 +00:00
<div>
2022-01-31 19:28:00 +00:00
<%= link_to "Delete #{@player.name} ❌", @player, data: {
turbo_method: :delete,
turbo_confirm: "Are you sure you want to remove #{@player.name}?"} %>
2022-01-15 17:10:26 +00:00
</div>