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

Aggregate Data - {{ device_name }}

{% elif config_type in "compliance,json_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 include_file %}
{{ output }}
{% elif config_type == "sotagg" and format == 'json' %}
Output {% include include_file %}
{{ output }}
{% elif config_type in "compliance,json_compliance" %}
{% else %}
{{ output }}
{% endif %}
{% endblock %}