{% load helpers %} {% load log_levels %} {% load static %}
Summary of Results: {% include 'extras/inc/job_label.html' with result=result %} {% if result %} started at {{ result.created }} by {{ result.user }} {% if result.completed %} and ran for {{ result.duration }} {% else %} {% endif %} {% endif %}
{% if result.completed %} {% for grouping, data in result.data.items %} {% if grouping != "total" and grouping != "output" %} {% endif %} {% endfor %} {% endif %}
{{ grouping }}
{% if result.completed %}
Logs
{% for grouping, data in result.data.items %} {% if grouping != "total" and grouping != "output" %} {% for time, level, obj, url, message in data.log %} {% endfor %} {% endif %} {% endfor %}
Time Level Object Message
{{ grouping }}
{{ time }} {% log_level level %} {% if obj and url %} {{ obj }} {% elif obj %} {{ obj }} {% endif %} {{ message | render_markdown }}
{% else %}
Pending results
{% endif %}