{% extends 'base.html' %} {% load base_extras inventory_extras ui_extras %} {% block content %}
{% if page_obj.paginator.count %}

Run {{ distributed_query }}

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

{% else %}

No results for this run

{% endif%} {% if selected_fields or available_fields %}

Fields

{% if selected_fields %}

Selected field{{ selected_fields|length|pluralize }}

    {% for link, field in selected_fields %}
  • {{ field }}
  • {% endfor %}
{% endif %} {% if available_fields %}

Available field{{ available_fields|length|pluralize }}

    {% for link, field in available_fields %}
  • {{ field }}
  • {% endfor %}
{% endif %}
{% endif %}
{% pagination next_url previous_url %} {% if rows %}
{% for header in headers %} {% endfor %} {% for serial_number, row in rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ serial_number|privacywrapper }} {{ cell|default:"-" }}
{% else %} {% for object in page_obj %} {% for k, v in object.iter_row_kv %} {% endfor %}
{{ object.serial_number|privacywrapper }}
{{ k }} {{ v|default:"-" }}
{% endfor %} {% endif %} {% pagination next_url previous_url %}
{% endblock %} {% block extrajs %} {% endblock %}