{% extends "base.html" %} {% load helpers %} {% block title %}Config Preview — {{ intent.intent_id }}{% endblock title %} {% block content %}

Config Preview: {{ intent.intent_id }} v{{ intent.version }}

Rendered device configurations from the last dry-run / preview job. These are the exact configs that would be pushed on deployment.

{% if rendered_configs %} {% for device_name, config in rendered_configs.items %}
{{ device_name }} {{ config|length }} characters
{{ config }}
{% endfor %} {% else %}
No rendered configs available. Run the Config Preview job first from the intent detail page.
{% endif %}
Back to Intent {% if rendered_configs %} Re-run Preview {% endif %}
{% endblock content %}