{% extends "base.html" %} {% block title %}Users — VPN Control Panel{% endblock %} {% block content %}

Users

{% if error %}
{{ error }}
{% endif %}
{{ users|length }} total
{% for u in users %} {% endfor %}
ID Telegram ID Username Full Name Language Status Created
{{ u.id }} {{ u.telegram_id }} {% if u.username %}@{{ u.username }}{% else %}—{% endif %} {{ u.full_name }} {{ u.language_code }} {% if u.is_active %} Active {% else %} Inactive {% endif %} {{ u.created_at.strftime("%Y-%m-%d") }}
{% endblock %}