{% extends "dashboard_app/_content.html" %} {% load i18n %} {% 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 content %} {% for hardware_device in test_run.devices.all %} {% endfor %}
    Description Device Type Attributes
    {{ hardware_device.description }} {{ hardware_device.get_device_type_display }}
    {% for attribute in hardware_device.attributes.all %}
    {{ attribute.name }}
    {{ attribute.value }}
    {% endfor %}
    {% endblock %}