{% extends 'base.html' %} {% load i18n %} {% load static %} {% block content %} {% if allow_team_selection %}
{% endif %} {% if check_results is not None %}
{% for result in check_results %} {% if result.gateway_ping_rtt_ms is not None %} {% else %} {% endif %} {% if result.demo_ping_rtt_ms is not None %} {% else %} {% endif %} {% if result.demo_service_ok %} {% else %} {% endif %} {% if result.vulnbox_ping_rtt_ms is not None %} {% else %} {% endif %} {% if result.vulnbox_service_ok %} {% else %} {% endif %} {% endfor %}
{% trans 'Time' %} ({{ server_timezone }}) {% trans 'Last WireGuard Handshake' %} {% trans 'Gateway Ping' %} {% trans 'Demo Vulnbox Ping RTT' %} {% trans 'Demo Vulnbox Service' %} {% trans 'Vulnbox Ping RTT' %} {% trans 'Vulnbox Service' %}
{{ result.timestamp | date }} {{ result.timestamp | time }} {% if result.wireguard_handshake_time is not None %} {{ result.wireguard_handshake_time | time }} {% else %} {% trans 'N/A' %} {% endif %} {{ result.gateway_ping_rtt_ms }} ms {% trans 'down' %} {{ result.demo_ping_rtt_ms }} ms {% trans 'down' %} {% trans 'up' %} {% trans 'down' %} {{ result.vulnbox_ping_rtt_ms }} ms {% trans 'down' %} {% trans 'up' %} {% trans 'down' %}
{% endif %} {% endblock %}