{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.nautobot_golden_config.delete_compliancerule %} {% delete_button object use_pk=1 %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Details
Device Name {{ object.device }}
Feature {{ object.rule.feature.name }}
Compliance Status {% if object.compliance %} {% else %} {% endif %}
Actual Configuration
{{ object.actual }}
Intended Configuration
{{ object.intended }}
Extra Configuration
{{ object.extra }}
Missing Configuration
{{ object.missing }}
Ordered {% if object.ordered %} {% else %} {% endif %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %}
{% endblock %}