{% extends 'base.html' %} {% load bootstrap inventory_extras %} {% block content %}

Run {{ distributed_query }}

{{ page_obj.paginator.count }} Machine{{ page_obj.paginator.count|pluralize }}

{% if next_url or previous_url %} {% endif %} {% if page_obj %} {% for dqm in page_obj %} {% endfor %}
Serial number Status Error message
{{ dqm.serial_number }} {% if dqm.status > 0 %}Error{% else %}{% if dqm.status == 0 %}OK{% else %}In flight{% endif %}{% endif %} {{ dqm.error_message|default:"-" }}
{% endif %} {% if next_url or previous_url %} {% endif %} {% endblock %}