{% extends "base.html" %} {% block content %}
Job submitted at {{ target.submitted.strftime('%Y-%m-%d %H:%M') }}
Latency | Jitter | Packet loss | Source | Comment | Contact | Date |
---|---|---|---|---|---|---|
{% if r.avgrtt is not none() %}{{ r.avgrtt|round(2) }} ms{% endif %} | {% if r.jitter is not none() %}{{ r.jitter|round(2) }} ms{% endif %} | {% if r.probes_sent is not none() and r.probes_received is not none() and r.probes_sent != 0 %} {{ packetloss|round(2) }}% ({{ r.probes_sent - r.probes_received }}/{{ r.probes_sent }}) {% endif %} | {{ 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') }} |