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

Configuration {{ configuration }}

Attribute Value
Name {{ object.name }}
Description {{ object.description|default:"-"|linebreaksbr }}
Inventory apps full information shard {{ object.inventory_apps_full_info_shard }}%
Principal user detection source{{ object.principal_user_detection_sources|length|pluralize }} {{ principal_user_detection_sources|default:"-" }}
Principal user detection domain{{ object.principal_user_detection_domains|length|pluralize }} {{ object.principal_user_detection_domains|join:", "|default:"-" }}
Collected condition key{{ object.collected_condition_keys|length|pluralize }} {{ object.collected_condition_keys|join:", "|default:"-" }}
Managed installs sync interval {{ object.managed_installs_sync_interval_days }} day{{ object.managed_installs_sync_interval_days|pluralize }}
Auto reinstall incidents {{ object.auto_reinstall_incidents|yesno }}
Auto failed install incidents {{ object.auto_failed_install_incidents|yesno }}
Version
{{ object.version }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}
{% if perms.munki.change_configuration %}

Update

{% endif %} {% if perms.munki.view_enrollment %}

{{ enrollment_count }} Enrollment{{ enrollment_count|pluralize }}

{% if perms.munki.add_enrollment %}

Create

{% endif %} {% if enrollments %} {% for enrollment, distributor, distributor_link in enrollments %} {% with enrollment.secret as secret %} {% endwith %} {% endfor %}
ID Business unit Tags Created at Request count Version Distributor
{{ enrollment.pk }} {% if perms.inventory.view_metabusinessunit %} {{ secret.meta_business_unit|default:"-" }} {% else %} {{ secret.meta_business_unit|default:"-" }} {% endif %} {% 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 %} {% if distributor_link %} {{ distributor.get_description_for_enrollment }} {% else %} {{ distributor.get_description_for_enrollment }} {% endif %} {% else %} - {% endif %} {% if secret.is_used_up %} Enrollment used up. {% else %} {% if not distributor %} {% if perms.munki.change_enrollment %} {% endif %} {% if perms.munki.delete_enrollment %} {% endif %} {% endif %} {% endif %}
{% endif %} {% endif %} {% endblock %}