<h1>Tabla de posiciones</h1>

<% if (!torneo) { %>
  <section class="card center"><p class="muted">No hay un torneo activo.</p></section>
<% } else { %>
  <section class="card jackpot">
    <div class="label muted">Jackpot · <%= torneo.nombre %></div>
    <div class="amount"><%= fmt.dinero(jackpot.total, torneo.moneda) %></div>
  </section>

  <section class="card">
    <% if (tabla.length === 0) { %>
      <p class="muted">Todavía no hay quinielas activas.</p>
    <% } else { %>
      <table>
        <thead>
          <tr><th>#</th><th>Quiniela</th><th>Jugador</th><th>Exactos</th><th>Puntos</th></tr>
        </thead>
        <tbody>
          <% tabla.forEach(function (q, i) { %>
            <tr>
              <td class="pill-pos"><%= i + 1 %></td>
              <td><%= q.nombre %></td>
              <td class="muted"><%= q.jugador %></td>
              <td><%= q.exactos %></td>
              <td><strong><%= q.puntos %></strong></td>
            </tr>
          <% }); %>
        </tbody>
      </table>
    <% } %>
  </section>
<% } %>
