{% extends "dashboard_app/base.html" %} {% load i18n %} {% load humanize %} {% load pagination_tags %} {% block title %} {{ block.super }} | {% trans "Test Runs" %} | {{ test_run }} {% endblock %} {% block breadcrumbs %}
  • {% trans "Bundle Streams" %}
  • {{ test_run.bundle.bundle_stream }}
  • {{ test_run }}
  • {% endblock %} {% block sidebar %}
    {% trans "Test Run UUID" %}
    {{ test_run.analyzer_assigned_uuid }}
    {% trans "Test Name" %}
    {{ test_run.test }}
    {% trans "OS Distribution" %}
    {{ test_run.sw_image_desc|default:"Unspecified" }}
    {% trans "Bundle information" %}
    {{ 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 "Software Context" %}
    {% trans "more" %}
    {% trans "Hardware Context" %}
    {% trans "more" %}
    {% endblock %} {% block content %} {% autopaginate test_run.test_results.all 50 as test_results %} {% if invalid_page %}

    {% trans "There is no content on this page." %}

    {% trans "Try the" %} {% trans "first page" %} {% trans "instead." %}

    {% else %} {% for test_result in test_results %} {% if test_result.measurement %} {% endif %} {% endfor %}
    # {% trans "Test case" %} {% trans "Result" %} {% trans "Measurement" %}
    {{ test_result.relative_index }} {{ test_result.test_case }} {{ test_result.get_result_display }} {{ test_result.get_result_display }} {{ test_result.measurement|default_if_none:"" }} {{ test_result.units }}
    {% paginate %} {% endif %} {% endblock %}