{% extends 'base.html' %} {% block title %}Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ current_user.tokens }}

Tokens Remaining

{% if packages %}
Buy Tokens
{% else %}

No packages available yet. Contact admin to add tokens.

{% endif %}
Phone Numbers
{% if phones %} {% for p in phones %} {% endfor %}
Name Phone Country Status Actions
{{ p.full_name or '—' }} {{ p.phone }} +{{ p.country_code }} {% if p.active %} Active {% else %} Paused {% endif %}
{% else %}
📱

No phone numbers added yet.
Add one above to get started.

{% endif %}
{% if transactions %}
Recent Activity
{% for tx in transactions %} {% endfor %}
Date Type Amount Note
{{ tx.created_at.strftime('%Y-%m-%d %H:%M') }} {{ tx.type }} {{ '+' if tx.amount > 0 else '' }}{{ tx.amount }} {{ tx.note }}
{% endif %} {% endblock %}