{% extends "base_template.html" %} {% load views_extras %} {% block title %}CATTLE Tests {{ tests.number }}{% endblock %} {% block styles %} {% endblock %} {% block headscripts %} {% endblock %} {% block content %}
Date Time
Run
Conditions
Arguments
Step
Duration
Results
Caused Bug
Comment
History?
{% for test in tests %}
{# Each "test" is a Test model object. #}
{{test.parentrun.end_time|date:"d M H:m"}}
{{ test.test_conditions }}
{{ test.test_args }}
{{ test.test_sequence_number }}
{{ test.test_duration|format_time }}
{{ test.test_results|translate_PF }}
{{ test.caused_bug|jira_pull|safe }}
{{ test.comment|linebreaks }}
{% if test.history.all.count > 1 %} {% endif %}
{% endfor %}
{% endblock %} {% block footscripts %} {% endblock %}