about summary refs log blame commit diff
path: root/app/views/players/index.html.erb
blob: aea42525181ea97e2393dd65c01f2f7e487e1519 (plain) (tree)
1
2

                        


















                                                                     
                                             

                                              
 
<h1>Pinball Players</h1>


<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><% if player.paid %>✓<% end %></td>
        <td><%= player.strikes %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<hr>
<p><%= @players.size %> available players</p>

<%= link_to "+ Add player", new_player_path %>