{% extends "layouts/content-bootstrap.html" %} {% load i18n %} {% block content %} {% for hardware_device in test_run.devices.all %} {% if forloop.counter|divisibleby:2 %}
{% endif %}
{% if hardware_device.attributes.all %}
{% for attribute in hardware_device.attributes.all %}
{{ attribute.name }}
{{ attribute.value }}
{% endfor %}
{% else %}

{% trans "No details available." %}

{% endif %}
{% if forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %} {% endblock %}