{% extends 'base.html' %} {% load inventory_extras ui_extras %} {% block content %}
| Name | Type | Tags | Excluded tags | {% for obj in object_list %} {% with obj.compliance_check as cc %}|
|---|---|---|---|---|
| {{ cc.name }} | {{ obj.get_type_display }} | {% for tag in obj.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {% for tag in obj.excluded_tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {% endwith %} {% if perms.munki.change_scriptcheck or perms.munki.delete_script_check %}{% if perms.munki.change_scriptcheck %} {% url 'munki:update_script_check' obj.pk as url %} {% button 'UPDATE' url "Edit script check" %} {% endif %} {% if perms.munki.delete_scriptcheck %} {% url 'munki:delete_script_check' obj.pk as url %} {% button 'DELETE' url "Delete script check" %} {% endif %} | {% endif %}