about summary refs log tree commit diff
path: root/app/views/players/_player.html.erb
blob: 35e7cb1414af93097260dd31898d5a3b4a9db80e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>