{% extends "base.html" %} {% block title %}{{ gateway.name }} - mGuard VPN Manager{% endblock %} {% block content %}
{{ gateway.router_type }} | {{ gateway.location or 'Kein Standort' }} | {% if gateway.last_seen %} Zuletzt gesehen: {{ gateway.last_seen }} {% else %} Nie verbunden {% endif %}
| Status | {% if gateway.is_online %} Online {% else %} Offline {% endif %} |
|---|---|
| Typ | {{ gateway.router_type }} |
| Firmware | {{ gateway.firmware_version or '-' }} |
| Seriennummer | {{ gateway.serial_number or '-' }} |
| VPN IP | {{ gateway.vpn_ip or 'Nicht zugewiesen' }} |
| VPN Subnetz | {{ gateway.vpn_subnet or '-' }} |
| Provisioniert | {% if gateway.is_provisioned %} Ja {% else %} Nein {% endif %} |
| Standort | {{ gateway.location or '-' }} |
{{ gateway.description }}
{% endif %}