{% extends "insanityweb/base.html" %} {% load insanity_extra %} {% block title %} Matrix View of Testrun #{{testrun.id}} {% endblock %} {% block content %}

Results for Testrun #{{testrun.id}}

Date Time Client
{{testrun.starttime|date:"Y-m-d"}} ({{testrun.starttime|date:"l"}}, week {{ testrun.starttime|date:"W"}}) {{ testrun.starttime|time:"H:i:s" }} {% if testrun.stoptime %} to {{ testrun.stoptime|time:"H:i:s" }} ({{ testrun.starttime|timesince:testrun.stoptime}}) {% endif %} {{ testrun.clientid.software }} / {{ testrun.clientid.name }} / {{ testrun.clientid.user }}
Total results : {{ totalnb }} {% matrix_navigation %} {% for sortedtest in sortedtests %}

{{ sortedtest.type.type }}

{% for arg in sortedtest.type.arguments.all %} {% endfor %} {% for item in sortedtest.fullchecklist %} {% endfor %} {% for test in sortedtest.tests %} {% matrix_checklist_row test sortedtest.fullchecklist sortedtest.fullarguments sortedtest.allchecks sortedtest.allargs sortedtest.allextras %} {% endfor %}
ID{% split_dash_lines arg.name %}Result{% verticalize item.name %}Errors seen

Error summary

{% for item in errorsummary %} {% endfor %}
Check item Failures Description
{{ item.name }} {{ item.count }} {{ item.description }}
{% endfor %} {% endblock %}