gambosite/app/views/player/show.html.erb
2025-01-24 10:22:35 -08:00

20 lines
363 B
Plaintext

<h1><%= @player.name %></h1>
<table><thead>
<tr>
<th>Player</th>
<th>Purse</th>
<th>Wins</th>
<th>Losses</th>
</tr></thead>
<tbody>
<% @player.each do |game| %>
<tr>
<td><% @player.name %></td>
<td><% @player.purse %></td>
<td><% @player.wins %></td>
<td><% @player.losses %></td>
</tr>
<% end %>
</tbody>
</table>