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

{{ compliance_check.name }}

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

Compliance check

{% if perms.inventory.update_jmespathcheck %} {% url 'inventory:update_compliance_check' object.pk as url %} {% button 'UPDATE' url "Edit Compliance Check" %} {% endif %} {% if devtool_link %} {% endif %} {% if perms.inventory.delete_jmespathcheck %} {% url 'inventory:delete_compliance_check' object.pk as url %} {% button 'DELETE' url "Delete Compliance Check" %} {% endif %}
Attribute Value
Name {{ compliance_check.name }}
Description {{ compliance_check.description }}
Source name {{ object.source_name }}
Platform{{ object.platforms|length|pluralize }} {{ object.get_platforms_display }}
Tags {% for tag in object.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %}
JMESPath expression
{{ object.jmespath_expression }}
{% created_updated_at object %} {% endblock %}