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

Servers

{% if error %}
{{ error }}
{% endif %}
{{ servers|length }} total
{% for s in servers %} {% endfor %}
ID Name Host Port Protocol Location Load Status Created
{{ s.id }} {{ s.name }} {{ s.host }} {{ s.port }} {{ s.protocol.value }} {{ s.location }} ({{ s.country_code }}) {{ s.load_percent }}% {% if s.is_active %} Active {% else %} Offline {% endif %} {{ s.created_at.strftime("%Y-%m-%d") }}
{% endblock %}