{% extends "base.html" %} {% block content %}

Latency to {{ target }}

Job submitted at {{ target.submitted.strftime('%Y-%m-%d %H:%M') }}

{% for r in results %} {% set packetloss = (100 * (r.probes_sent - r.probes_received) / r.probes_sent) %} {% endfor %}
Latency Jitter Packet loss Source Comment Contact Date
{% if r.avgrtt is not none() %}{{ r.avgrtt }} ms{% endif %} {% if r.jitter is not none() %}{{ r.jitter }} ms{% endif %} = 50 %} class="red" {% elif packetloss > 0 %} class="orange" {% endif %}> {{ packetloss|round(2) }}% {{ r.participant.name }} {% if r.participant.country is not none() %} ({{ r.participant.country }}) {% endif %} {{ r.participant.comment|default("", True) }} {{ r.participant.contact }} {{ r.date.strftime('%Y-%m-%d %H:%M') }}
{% endblock %}