{% extends 'base.html' %} {% block title_head %} Leaderboard {% endblock title_head %} {% load gameui %} {% block head %} {% if page.number == 1 %} {% canonical_link 'leaderboard' %} {% else %} {% canonical_link 'leaderboard' page=page.number %} {% endif %} {% endblock head %} {% block content %} {% load gameui %}
| Rank | Account | Tier | Balance |
|---|---|---|---|
| {% if page.start_index|add:forloop.counter|add:-1 == 1 %} 🥇 {% elif page.start_index|add:forloop.counter|add:-1 == 2 %} 🥈 {% elif page.start_index|add:forloop.counter|add:-1 == 3 %} 🥉 {% else %} {{ page.start_index|add:forloop.counter|add:-1 }} {% endif %} |
{% if request.user.is_authenticated %}
{% pretty_account_link my_account=request.user.account target_account=current_account %}
{% else %}
{{ current_account.account_name }}
{% endif %}
|
{% tier current_account.balance "emoji" %} | ${{ current_account.balance }} |