{% extends 'base.html' %} {% load buttons %} {% load helpers %} {% load static %} {% block content %}

{% block title %}Configuration Compliance - {{ device_name }}{% endblock %}

{% block navigation %}
Feature Navigation Compliant Non-Compliant Clear
{% endblock %} {% for item in compliance_details %}
{{ item.feature|upper }}
{% if item.ordered %} {% if item.compliance %} {% else %} {% endif %} {% else %} {% if item.compliance %} {% else %} {% endif %} {% endif %} {% if item.compliance and not item.ordered %} {% elif item.compliance %} {% else %} {% endif %} {% if item.missing != "" %} {% endif %} {% if item.extra != "" %} {% endif %}
StatusCompliant Non-Compliant Compliant Non-Compliant
Intended Configuration {% if item.intended %}
{{ item.intended }}
{% else %} ___ {% endif %}
Actual Configuration {% if item.actual %}
{{ item.actual }}
{% else %} ___ {% endif %}
Configuration {% if item.actual %}
{{ item.actual }}
{% else %} ___ {% endif %}
Intended Configuration {% if item.intended %}
{{ item.intended }}
{% else %} ___ {% endif %}
Actual Configuration {% if item.actual %}
{{ item.actual }}
{% else %} ___ {% endif %}
Missing Configuration
{{ item.missing }}
Extra Configuration
{{ item.extra }}
{% endfor %} {% endblock %}