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

{{ configuration }}

{% if show_events_link %} {% url 'munki:configuration_events' object.pk as url %} {% button 'EVENTS' url %} {% endif %}

Configuration

{% if perms.munki.change_configuration %} {% url 'munki:update_configuration' object.pk as url %} {% button 'UPDATE' url "Edit Configuration" %} {% endif %}
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 }}
Script checks run interval {{ object.script_checks_run_interval_seconds }} seconds
Auto reinstall incidents {{ object.auto_reinstall_incidents|yesno }}
Auto failed install incidents {{ object.auto_failed_install_incidents|yesno }}
{% created_updated_at object %}
{% if perms.munki.view_enrollment %}

Enrollment{{ enrollment_count|pluralize }} ({{ enrollment_count }})

{% if perms.munki.add_enrollment %} {% url 'munki:create_enrollment' object.id as url %} {% button 'CREATE' url "Create new Enrollment" %} {% 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 Actions
{{ 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 %} {% url 'munki:delete_enrollment' configuration.pk enrollment.pk as url %} {% button 'DELETE' url "Delete Enrollment" %} {% endif %} {% endif %} {% endif %}
{% endif %}
{% endif %} {% endblock %}