pinrails/app/views/pages/index.html.erb

20 lines
410 B
Plaintext

<h1>nomi pinball</h1>
<%= image_tag "coinslotlogo.png" %>
<table>
<thead>
<th>Name</th>
<th>Paid</th>
<th>Strikes</th>
</thead>
<tbody>
<% @players.order("strikes").each do |player| %>
<tr>
<td><%= link_to player.name, edit_player_path(player) %></td>
<td><%= player.paid %></td>
<td><%= player.strikes %></td>
</tr>
<% end %>
</tbody>
</table>