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

{{ page_obj.paginator.count }} Quer{{ page_obj.paginator.count|pluralize:"y,ies" }}

{% if perms.osquery.add_query %}

Create

{% endif %}
{{ form.q|bootstrap_inline }}
{{ form.pack.label_tag }} {{ form.pack|bootstrap_inline }}
{{ form.compliance_check.label_tag }} {{ form.compliance_check }}
{% if next_url or previous_url %} {% endif %} {% if perms.osquery.view_pack %} {% endif %} {% if perms.osquery.view_distributedquery %} {% endif %} {% for query in page_obj %} {% with query.tables as tables %} {% if perms.osquery.view_pack %} {% endif %} {% if perms.osquery.view_distributedquery %} {% endif %} {% endwith %} {% endfor %}
Name / Tables Compliance checkPackRuns
{{ query }} {% if tables %}

{% for table in query.tables %}{{ table }} {% endfor %}

{% endif %}
{% if query.compliance_check %}yes{% else %}no{% endif %} {% if query.packquery %}{{ query.packquery.pack }}{% else %}-{% endif %} {% if query.distributed_query_count %}{{ query.distributed_query_count }}{% else %}-{% endif %}
{% if next_url or previous_url %} {% endif %} {% endblock %}