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

11 lines
261 B
Plaintext
Raw Normal View History

2022-01-15 17:10:26 +00:00
<p style="color: green"><%= notice %></p>
<%= render @player %>
<div>
<%= link_to "Edit this player", edit_player_path(@player) %> |
<%= link_to "Back to players", players_path %>
<%= button_to "Destroy this player", @player, method: :delete %>
</div>