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

Santa

{% if perms.santa.view_configuration %}

{{ configuration_count }} Configuration{{ configuration_count|pluralize }}

{% for configuration in configurations %} {% empty %}

No configuration.{% if perms.santa.add_configuration %} Create a configuration{% endif %}

{% endfor %}
Name Rules Enrollments Machines
{{ configuration.name }} {{ configuration.rule_count }} {{ configuration.enrollment_count }} {{ configuration.machine_count }}
{% endif %} {% if perms.santa.view_target %}

{{ targets.total }} Collected target{{ targets.total|pluralize }}

Type Count Rules
Binary {{ targets.binary.count }} {{ targets.binary.rule_count }}
Certificate {{ targets.certificate.count }} {{ targets.certificate.rule_count }}
Team ID {{ targets.teamid.count }} {{ targets.teamid.rule_count }}
Bundle {{ targets.bundle.count }} {{ targets.bundle.rule_count }}
{% endif %}
{% endblock %} {% block extrajs %} {% endblock %}