{% extends "dashboard_app/_content_with_sidebar.html" %} {% load i18n %} {% load humanize %} {% block content %} {% for test_result in test_run.test_results.select_related.all %} {% endfor %}
# {% trans "Test case" %} {% trans "Result" %} {% trans "Measurement" %}
{{ test_result.relative_index }} {{ test_result.test_case|default_if_none:"Not specified" }} {{ test_result.get_result_display }} {{ test_result.get_result_display }} {{ test_result.measurement|default_if_none:"Not specified" }} {{ test_result.units }}
{% endblock %} {% block sidebar %}
{% trans "Test Run UUID" %}
{{ test_run.analyzer_assigned_uuid }} {% trans "permalink" %}
{% trans "Test Name" %}
{{ test_run.test }}
{% trans "OS Distribution" %}
{{ test_run.sw_image_desc|default:"Unspecified" }}
{% trans "Bundle SHA1" %}
{{ test_run.bundle.content_sha1 }}
{% trans "Time check performed" %}
{{ test_run.time_check_performed|yesno }}
{% trans "Log analyzed on:" %}
{{ test_run.analyzer_assigned_date|naturalday }} {{ test_run.analyzer_assigned_date|time }}
{% trans "Data uploaded on:" %}
{{ test_run.import_assigned_date|naturalday }} {{ test_run.import_assigned_date|time }}
{% trans "Other information:" %}
{% trans "Hardware context" %} ({{ test_run.devices.all.count }} devices)
{% trans "Software context" %} ({{ test_run.packages.all.count }} packages, {{ test_run.sources.all.count }} sources)
{% trans "Attachments" %} ({{ test_run.attachments.count }})
{% endblock %}