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

8 lines
205 B
Plaintext
Raw Normal View History

2021-08-23 04:52:23 +00:00
<h1>Edit <%= @player.name %></h1>
2021-08-21 23:30:19 +00:00
<%= render "form", machine: @player %>
2021-09-27 05:33:06 +00:00
<p><%= link_to "Delete #{@player.name}", player_path(@player),
2021-08-25 05:21:33 +00:00
method: :delete,
2021-09-27 05:33:06 +00:00
data: { confirm: "Are you sure?" } %></p>