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

Compliance Check

{% if perms.inventory.add_jmespathcheck %} {% url 'inventory:create_compliance_check' as url %} {% button 'CREATE' url "Create new Compliance Check" %} {% endif %} {% if perms.inventory.view_machinesnapshot %} {% endif %} {% url 'inventory:compliance_check_terraform_export' as url %} {% button 'DOWNLOAD' url "Download Terraform config" %}
{% if object_list %} {% for obj in object_list %} {% with obj.compliance_check as cc %} {% endwith %} {% endfor %}
Name Source Platforms Tags
{{ cc.name }} {{ obj.source_name }} {{ obj.get_platforms_display }} {% for tag in obj.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %}
{% else %} {% if perms.inventory.add_jmespathcheck %} {% url 'inventory:create_compliance_check' as link %} {% no_entities 'Compliance checks' link %} {% else %} {% no_entities 'Compliance checks' %} {% endif %} {% endif %} {% endblock %}