{% extends 'base.html' %} {% block title_head %} Account {% endblock title_head %} {% block head %} {% load static %} {% endblock %} {% block content %} {% load humanize %} {% load gameui %}

{{ account.account_name }}

Balance: ${{ account.balance }} 💰

Tier: {% tier account.balance "title" %} {% tier account.balance "emoji" %}

Status: {% if account.locked %} Locked 🔒 {% else %} Unlocked 🟢 {% endif %}

Log in on a different browser:
🌐 Click to Show Login Link
{% settings_value 'TIERS' as tiers %} {% for tier in tiers %}
{% tier account.balance as account_tier %} {% if not forloop.last %}
{% endif %}
{% endfor %}

Recent heists 💼

{% settings_value "THEFT_WORDS" as theft_words %} {% for auth_attempt in recent_auth_attempts %} {% random_choice theft_words as theft_word %} {% if forloop.counter <= max_recent_auth_attempts_mobile and not forloop.first %}
{% endif %} {% comment %} On mobile, show a smaller number of items. {% endcomment %}
{{ auth_attempt.attacking_account.account_name }} {{ theft_word }} ${{ auth_attempt.defending_transfer_amount }} from {{ auth_attempt.defending_account.account_name }}
{% empty %}
No recent heists
{% endfor %}

Top Weekly Heists: {% for auth_attempt in top_auth_attempts %} {{ auth_attempt.attacking_account.account_name }} (${{ auth_attempt.defending_transfer_amount|abbreviate }}){% if not forloop.last %},{% endif %} {% empty %} No top heists {% endfor %}

Total Heists: {{ num_total_auth_attempts|intcomma }}

{% paginated_auth_attempt_table my_account=account defender=account %}
{% endblock %}