{% extends "base.html" %} {% load i18n %} {% load humanize %} {% load pagination_tags %} {% block title %} {{ block.super }} | {% trans "Test Runs" %} | {{ test_run }} | {% trans "Hardware Context" %} {% endblock %} {% block breadcrumbs %}
  • {% trans "Bundle Streams" %}
  • {{ test_run.bundle.bundle_stream }}
  • {{ test_run }}
  • {% trans "Hardware Context" %}
  • {% endblock %} {% block sidebar %} {% endblock %} {% block content %}

    Hardware Devices

    {% autopaginate test_run.devices.all as hardware_devices %} {% for hardware_device in hardware_devices %}
    {{ hardware_device.description }}
    {% for attribute in hardware_device.attributes.all %} {% endfor %}
    {{ attribute.name }} {{ attribute.value }}
    {% empty %} There are no hardware devices associated with this test run {% endfor %}
    {% paginate %} {% endblock %}