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

18 lines
237 B
Plaintext
Raw Normal View History

2022-01-15 17:10:26 +00:00
<div id="<%= dom_id player %>">
<p>
<strong>Name:</strong>
<%= player.name %>
</p>
<p>
<strong>Paid:</strong>
<%= player.paid %>
</p>
<p>
<strong>Strikes:</strong>
<%= player.strikes %>
</p>
</div>