{% extends "dcim/device.html" %} {% load helpers %} {% load json_helpers %} {% load static %} {% block title %} {{ object }} - Config Compliance {% endblock %} {% block content %} {% block navigation %}
Status | {% if item.rule.config_ordered %} {% if item.compliance %}Compliant | {% else %}Non-Compliant | {% endif %} {% else %} {% if item.compliance %}Compliant | {% else %}Non-Compliant | {% endif %} {% endif %}
Configuration |
{% if item.rule.config_type == "xml" %}
{% elif item.rule.config_type == "json" %}
{% else %}
{{ item.actual|placeholder }}{% endif %} |
|||
Intended Configuration |
{% if item.rule.config_type == "xml" %}
{% elif item.rule.config_type == "json" %}
{% else %}
{{ item.intended|placeholder }}{% endif %} |
|||
Actual Configuration |
{% if item.rule.config_type == "xml" %}
{% elif item.rule.config_type == "json" %}
{% else %}
{{ item.actual|placeholder }}{% endif %} |
|||
Missing Configuration |
{{ item.missing|condition_render_json }} |
|||
Extra Configuration |
{{ item.extra|condition_render_json }} |
|||
Remediating Configuration |
{{ item.remediation|condition_render_json }} |