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

Run #{{ distributed_query }}

{{ form }}

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

{% pagination next_url previous_url %} {% if page_obj %} {% for dqm in page_obj %} {% endfor %}
Serial number Status Error message Memory System time User time Wall time
{{ dqm.serial_number|privacywrapper }} {% if dqm.status > 0 %}Error{% else %}{% if dqm.status == 0 %}OK{% else %}In flight{% endif %}{% endif %} {{ dqm.error_message|default:"-" }} {{ dqm.memory|default_if_none:"-" }} {{ dqm.system_time|default_if_none:"-" }} {{ dqm.user_time|default_if_none:"-" }} {{ dqm.wall_time_ms|default_if_none:"-" }}
{% endif %} {% pagination next_url previous_url %} {% endblock %}