{% extends 'base.html' %} {% load buttons %} {% block content %} {% if config_type == "sotagg" %}

Aggregate Data - {{ device_name }}

{% elif config_type == "compliance" %}

Compliance Details - {{ device_name }}

{% elif config_type == "backup" %}

Backup Configuration Details - {{ device_name }}

{% else %}

Intended Configuration Details - {{ device_name }}

{% endif %}
{% if config_type == "sotagg" and format == 'yaml' %}
Output {% include 'extras/inc/configcontext_format.html' %}
{{ output }}
{% elif config_type == "sotagg" and format == 'json' %}
Output {% include 'extras/inc/configcontext_format.html' %}
{{ output }}
{% elif config_type == "compliance" %}
{% else %}
{{ output }}
{% endif %}
{% endblock %}