{% extends 'extras/report.html' %} {% load helpers %} {% load static %} {% block title %}{{ report.name }} - {{ result.get_status_display }}{% endblock %} {% block content %}

Run: {{ result.created }} {% if result.completed %} Duration: {{ result.duration }} {% else %} {% endif %} {% include 'extras/inc/job_label.html' with result=result %}

{% if result.completed %}
Report Methods
{% for method, data in result.data.items %} {% endfor %}
{{ method }}
Report Results
{% for method, data in result.data.items %} {% for time, level, obj, url, message in data.log %} {% endfor %} {% endfor %}
Time Level Object Message
{{ method }}
{{ time }} {% if obj and url %} {{ obj }} {% elif obj %} {{ obj }} {% endif %} {{ message }}
{% else %}
Pending results
{% endif %}
{% endblock %} {% block javascript %} {% endblock %}