{% extends 'base.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load custom_links %} {% load plugins %} {% block title %}{{ record }}{% endblock %} {% block header %} {% include 'config_officer/navi_panel.html' %}

{{ record.device }} compliance status

{% endblock %} {% block content %}
Service compliance status
Device {{ record.device|placeholder }}
Status {% if record.status == 'compliance' %} {% else %} {% endif %}
Notes

{{ record.notes }}

Attached services {% for service in record.get_services_list_for_device %} {{ service.name|default:"—" }}
{% endfor %}
Matched templates {% for template in record.get_device_templates %} {{ template.name|default:"—" }}
{% endfor %}
Configuration compliance
Generated config Diff
{{ record.get_generated_config }}
{{ record.diff }}
All matched templates
{% for template in record.get_device_templates %} {% endfor %}
Template Template text
{{ template }}
{{ template.configuration }}
{{ record.device }} running configuration updated: {{config_update_date}}
{{ device_config }}
{% endblock %}