leaderboard.eta 858 B

123456789101112131415161718192021222324
  1. <% layout('main.eta') %>
  2. <div class="max-w-5xl m-auto">
  3. <table class="leaderboard table-auto block">
  4. <tbody class="flex flex-col">
  5. <% for (const player of it.players) { %>
  6. <tr class="inline-flex justify-between">
  7. <td class="border border-transparent border-r-zinc-700 p-1.5 pr-3 w-10 text-right"><%= player.ranking %></td>
  8. <td class="pl-3 p-1.5 <%= player.ranking == 1 ? 'the-one': '' %>"><a href="/u/<%= player.user_id %>/"><%~ player.flag %><%= ' ' + player.username %></a></td>
  9. <td class="p-1.5 ml-auto"><%= Math.round(player.elo) %></td>
  10. <td class="p-1.5 text-orange-600">ELO</td>
  11. </tr>
  12. <% } %>
  13. </tbody>
  14. </table>
  15. <%~
  16. include('pagination.eta', {
  17. page_num: it.page,
  18. max_pages: it.max_pages,
  19. url_formatter: (num) => `/leaderboard/page-${num}/`
  20. })
  21. %>
  22. </div>