{% extends "base.html" %} {% block title %}کاربران VPN — {{ panel.name }}{% endblock %} {% block content %}
{% include "_sidebar.html" %}

کاربران VPN — {{ panel.name }}

{% if error %}
خطا

{{ error }}

{% endif %} {% if users %}
{% for u in users %} {% endfor %}
نام کاربری وضعیت حجم انقضا HWID
{{ u.username }} {{ u.status or '—' }} {% set used = u.used_traffic or 0 %} {% set lim = u.data_limit or 0 %} {{ bytes_to_gb(used) }} {% if lim %}/ {{ bytes_to_gb(lim) }} GB{% else %}/ ∞{% endif %} {% if u.expire %}{{ u.expire }}{% else %}نامحدود{% endif %} {{ u.hwid_limit if u.hwid_limit is not none else '—' }} ویرایش

مجموع: {{ total }}

{% else %}

کاربری وجود ندارد

اولین کلاینت VPN را بسازید.

+ کاربر جدید
{% endif %}
{% endblock %}