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

Santa configuration {{ object.name }}

{% if object.allowed_path_regex %} {% endif %} {% if object.blocked_path_regex %} {% endif %}
Attribute Value
Name {{ object.name }}
Mode {{ object.get_client_mode_display }}
Client certificate auth {{ object.client_certificate_auth|yesno }}
Batch size {{ object.batch_size }}
Full sync interval {{ object.full_sync_interval }}s
Enable bundles {{ object.enable_bundles|yesno }}
Enable transitive rules {{ object.enable_transitive_rules|yesno }}
Allowed path regex {{ object.allowed_path_regex }}
Blocked path regex {{ object.blocked_path_regex }}
Block USB mass storage {{ object.block_usb_mass_storage|yesno }}
Remount USB mode {% if object.remount_usb_mode %}{{ object.remount_usb_mode|join:" " }}{% else %}-{% endif %}
Allow Unknown shard {{ object.allow_unknown_shard }}%
Enable all event upload shard {{ object.enable_all_event_upload_shard }}%
Sync incident severity {{ object.get_sync_incident_severity|default:"Configuration error" }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if perms.santa.change_configuration %} Update {% endif %} {% if show_events_link %} Events {% endif %} {% for link, anchor_text in store_links %} {{ anchor_text }} {% endfor %}
{% if perms.santa.view_enrollment %}

{{ enrollments_count }} Enrollment{{ enrollments_count|pluralize }}

{% if perms.santa.add_enrollment %}

Create

{% endif %} {% if enrollments %} {% for enrollment in enrollments %} {% with enrollment.secret as secret %} {% with enrollment.distributor as distributor %} {% endwith %} {% endwith %} {% endfor %}
Business unit Tags Created at Request count Version Distributor
{{ secret.meta_business_unit|default:"-" }} {% for tag in secret.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} {{ secret.created_at }} {{ secret.request_count }}{% if secret.quota %} / {{ secret.quota }}{% endif %} {{ enrollment.version }} {% if distributor %} {{ distributor.get_description_for_enrollment }} {% else %} - {% endif %} {% if not distributor and not secret.is_used_up %} plist configuration profile {% elif secret.is_used_up %} Enrollment used up. {% endif %}
{% endif %} {% endif %} {% if perms.santa.view_rule %}

{{ rules_count }} Rule{{ rules_count|pluralize }}

Manage rules

{% endif %} {% endblock %}