{% extends "base.html" %} {% load i18n %} {% load humanize %} {% block title %} | {% trans "Test Runs" %} | {{ test_run }} {% endblock %} {% block breadcrumbs %}
  • {{ test_run.bundle.bundle_stream }}
  • {{ test_run.analyzer_assigned_uuid }}
  • {% endblock %} {% block sidebar %}
    {% trans "Test Name" %}
    {{test_run.test}}
    {% trans "OS Distribution" %}
    {{test_run.sw_image_desc}}
    {% trans "Bundle information" %}
    {{test_run.bundle.content_sha1}}
    {% trans "Time check performed" %}
    {{ test_run.time_check_performed|yesno:"Yes,No" }}
    {% 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 }}
    {% endblock %} {% block content %} {% for test_result in test_run.test_results.all %} {% endfor %}
    {% trans "Test case" %} {% trans "Test result" %} {% trans "Measurement" %}
    {{test_result.test_case}} {{test_result.get_result_display|upper}} {{ test_result.measurement }} {{ test_result.units}}
    {% endblock %}