{% extends "base.html" %} {% from "macros/icons.html" import icon %} {% block title_extra %} — {{ _('my_connections_title') }}{% endblock %} {% block content %}

{{ icon('layers') }} {{ _('my_connections_title') }}

{% if connections %}
{% for c in connections %}
{{ icon('link') }}
{{ c.name or 'VPN Connection' }}
{{ icon('server') }} {{ c.server_name }} {{ 'AmneziaWG' if c.protocol == 'awg' else ('AmneziaWG 2.0' if c.protocol == 'awg2' else ('AWG Legacy' if c.protocol == 'awg_legacy' else ('Xray' if c.protocol == 'xray' else c.protocol | upper))) }} {% if c.created_at %} 📅 {{ c.created_at[:10] }} {% endif %}
{% endfor %}
{% else %}
{{ icon('link') }}
{{ _('no_connections') }}
{{ _('no_connections_user_desc') }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}