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

Run{{ distributed_query_count|pluralize }} ({{ distributed_query_count }})

{% pagination next_url previous_url %} {% if perms.osquery.view_query %} {% endif %} {% if perms.osquery.view_filecarvingsession %} {% endif %} {% for distributed_query in distributed_queries %} {% if perms.osquery.view_query %} {% endif %} {% if perms.osquery.view_filecarvingsession %} {% endif %} {% endfor %}
#QueryTables Machines ResultsFile carving sessions
{{ distributed_query.id }} {% if distributed_query.query_id %}{{ distributed_query.query_name }}{% else %}-{% endif %} {% for table in distributed_query.tables %}{{ table }} {% endfor %} {% if distributed_query.machine_count %}{{ distributed_query.machine_count }}{% else %}-{% endif %} {% if distributed_query.result_count %}{{ distributed_query.result_count }}{% else %}-{% endif %} {% if distributed_query.file_carving_session_count %}{{ distributed_query.file_carving_session_count }}{% else %}-{% endif %}
{% pagination next_url previous_url %} {% endblock %}