{% extends "base.html" %} {% block title_extra %} — {{ _('my_connections_title') }}{% endblock %} {% block content %} 🔗 {{ _('my_connections_title') }} {% if connections %} {% for c in connections %} 🔗 {{ c.name or 'VPN Connection' }} 🖥 {{ 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 %} {{ _('show_config') }} {% endfor %} {% else %} 🔗 {{ _('no_connections') }} {{ _('no_connections_user_desc') }} {% endif %}