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

{{ object }}

{% if show_events_link %} {% url 'munki:script_check_events' object.pk as url%} {% button 'EVENTS' url %} {% endif %} {% for link, anchor_text in store_links %} {% button 'LINK' link anchor_text %} {% endfor %}

Script check

{% if perms.munki.change_scriptcheck %} {% url 'munki:update_script_check' object.pk as url %} {% button 'UPDATE' url "Edit Script Check" %} {% endif %} {% if perms.munki.delete_scriptcheck %} {% url 'munki:delete_script_check' object.pk as url %} {% button 'DELETE' url "Delete Script Check" %} {% endif %}
Attribute Value
Name {{ compliance_check.name }}
Description {{ compliance_check.description|linebreaks }}
Type {{ object.get_type_display }}
Source
{{ object.source }}
Expected result {{ object.expected_resultĀ }}
Tags {% for tag in object.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %}
Excluded tags {% for tag in object.excluded_tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %}
Intel? {{ object.arch_amd64|yesno }}
Apple Silicon? {{ object.arch_arm64|yesno }}
Min. OS version {{ object.min_os_version|default:"-" }}
Max. OS version {{ object.max_os_version|default:"-" }}
{% created_updated_at object %}
{% endblock %}