{% extends "layout.twig" %} {% block title %}{{ client.name }}{% endblock %} {% block content %}

{{ client.name }}

Client Configuration

IP Address
{{ client.client_ip }}
Status
{% if client.status == 'active' %} Active {% else %} Disabled {% endif %}
Created
{{ client.created_at }}
Download Config {% if client.status == 'active' %}
{% else %}
{% endif %}

Traffic Statistics

Uploaded
{{ client.bytes_sent|default(0)|number_format }} B
Downloaded
{{ client.bytes_received|default(0)|number_format }} B
Total
{{ (client.bytes_sent|default(0) + client.bytes_received|default(0))|number_format }} B
Last Handshake
{% if client.last_handshake %} {{ client.last_handshake }} {% else %} Never connected {% endif %}
{% if client.qr_code %}

QR Code

QR Code

Scan with Amnezia VPN app

{% endif %}
{% endblock %}