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



                  






















                                                                          

      

                                                       

                                              
<% if not notice.nil? %><p style="color: green"><%= notice %></p><% end %>

<h1>Players</h1>

<div id="players">
  <table>
    <thead>
    <th>Name</th>
    <th>Paid</th>
    <th>Strikes</th>
    <th>Delete</th>
    </thead>
    <tbody>
    <% @players.each do |player| %>
      <tr>
        <td><%= link_to player.name, player %></td>
        <td>
          <% if player.paid %>✓
          <% end %></td>
        <td><%= player.strikes %></td>
        <td><%= link_to "X", player, data: {
          turbo_method: :delete,
          turbo_confirm: "Are you sure you want to remove #{player.name}?"
        } %></td>
      </tr>
    <% end %>
    </tbody>
  </table>
</div>

<p><%= pluralize(@players.count, 'total player') %></p>

<hr>
<%= link_to "Add a player", new_player_path %>