{% extends "dashboard_app/_content_with_sidebar.html" %} {% load django_tables2 %} {% load i18n %} {% load humanize %} {% block content %}

Results

{% render_table test_table %}

Attachments

{% include "dashboard_app/_attachments.html" with attachments=test_run.attachments %} {% endblock %} {% block sidebar %}

Test run details

{% trans "Test Name" %} (?):
{{ test_run.test.test_id }}
{% trans "Test Run UUID" %} (?):
{{ test_run.analyzer_assigned_uuid }} (permalink)
{% trans "Bundle SHA1" %} (?):
{{ test_run.bundle.content_sha1 }}
{% trans "Tags" %} (?):

Software context

{% trans "OS Distribution:" %}
{{ test_run.sw_image_desc|default:"Unspecified" }}
{% trans "Software packages" %} (?):
See all {{ test_run.packages.all.count }} software packages
{% trans "Software sources" %} (?):
See all {{ test_run.sources.all.count }} source references

Hardware context

{% trans "Board:" %}
{{ test_run.get_board|default_if_none:"There are no boards associated with this test run" }}
{% trans "Other devices" %} (?):
See all {{ test_run.devices.all.count }} devices

Custom attributes (?)

Time stamps (?)

{% trans "Log analyzed on" %} (?):
{{ test_run.analyzer_assigned_date|naturalday }} {{ test_run.analyzer_assigned_date|time }} ({{ test_run.analyzer_assigned_date|timesince }} ago)
{% trans "Time check performed" %} (?):
{{ test_run.time_check_performed|yesno }}
{% trans "Data imported on" %} (?):
{{ test_run.import_assigned_date|naturalday }} {{ test_run.import_assigned_date|time }} ({{ test_run.import_assigned_date|timesince }} ago)
{% trans "Data uploaded on" %} (?):
{{ test_run.bundle.uploaded_on|naturalday }} {{ test_run.bundle.uploaded_on|time }} ({{ test_run.bundle.uploaded_on|timesince }} ago)
{% endblock %}