{% extends "base.html" %} {% block title %}Dashboard - WireGuard Admin{% endblock %} {% block breadcrumbs %}/ Dashboard{% endblock %} {% block content %}

Dashboard

{% for item in overview %}

Interface {% if item.iface.imported %} imported {% endif %}

{{ item.iface.name }} {% if item.status.up %} up {% else %} down {% endif %}

{{ server_address(item.iface.subnet) }} · Port {{ item.status.listen_port or item.iface.listen_port }}

{{ item.online }} / {{ item.peers | length }} peers online · RX {{ item.status.total_rx | fmt_bytes }} / TX {{ item.status.total_tx | fmt_bytes }}

{% else %}

No interfaces. Create or import one.

{% endfor %}

Peers

Name Interface Address Status Handshake RX TX
{% endblock %} {% block scripts %}{% endblock %}