{% extends "layouts/content-bootstrap.html" %} {% load django_tables2 %} {% load i18n %} {% load humanize %} {% block styles %} {% endblock %} {% block content %} {% render_table test_table %}

Test job attachments

{% include "dashboard_app/_attachments.html" with attachments=test_run.attachments %}
{% if bundle.testjob %}
{% 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" %} (?)
{% if test_run.tags.all %}
    {% for tag in test_run.tags.all %}
  • {{ tag }}
  • {% endfor %}
{% else %} {% trans "No associated tags." %} {% endif %}
{% if bundle.testjob.sub_id %}
Parent job id (?)
{{ bundle.testjob.sub_id }}
{% else %}
Test job details
Job {{ bundle.testjob.id }}
Test job complete log
Job logs {{ bundle.testjob.id }}
{% endif %}
Test job start time
{{ bundle.testjob.start_time }} ({{ bundle.testjob.start_time|timesince }} ago)
Test job end time
{{ bundle.testjob.end_time }} ({{ bundle.testjob.end_time|timesince }} ago)
{% endif %}
Export
test results data as CSV
{% trans "OS Distribution" %}
{{ test_run.sw_image_desc|default:"Unspecified" }}
{% trans "Software packages" %} (?)
{{ test_run.packages.all.count }} packages
{% trans "Software sources" %} (?)
{{ test_run.sources.all.count }} sources
{% 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
{% with test_run.attributes.values as attrs %}
{% for item in attrs|dictsort:"is_manual" %}
{{ item.name }}
{{ item.value }}
  {% if item.is_manual %} {% endif %}
{% empty %} none {% endfor %}
{% endwith %}
{% trans "Log analyzed on" %} (?)
{{ test_run.analyzer_assigned_date|naturalday }} {{ test_run.analyzer_assigned_date|time }} ({{ test_run.analyzer_assigned_date|timesince }} ago)
{% 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)
{% trans "Accurate" %} (?)
{{ test_run.time_check_performed|yesno }}
{% endblock %} {% block scripts %} {% endblock %}