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

Pack{{ pack_count|pluralize }} ({{ pack_count }})

{% if perms.osquery.add_pack %} {% url 'osquery:create_pack' as url %} {% button 'CREATE' url "Create new Pack" %} {% endif %}
{% if object_list %} {% if perms.osquery.change_pack %} {% endif %} {% for pack in object_list %} {% if perms.osquery.change_pack %} {% endif %} {% endfor %}
Name
{{ pack }} {% url 'osquery:update_pack' pack.id as url %} {% button 'UPDATE' url "Edit Pack" %}
{% else %} {% if perms.osquery.add_pack %} {% url 'osquery:create_pack' as link %} {% no_entities 'Packs' link %} {% else %} {% no_entities 'Packs' %} {% endif %} {% endif %} {% endblock %}