{% extends "base.html" %} {% load form_helpers %} {% load helpers %} {% load static %} {% block extra_styles %} {% endblock extra_styles %} {% block content %}
{% block title %}Generate Intended Configuration{% endblock title %}

This tool is intended for template developers. Production configuration generation should be initiated from the Config Overview page.

This will render the configuration for the selected device using Jinja templates from the Golden Config jinja_repository Git repository for that device. This feature allows developers to test their configuration templates without running a full "intended configuration" job. See the developing intended configuration templates documentation for more information.

Note: This will fetch the latest templates from the Golden Config Jinja template repository.

{% for field in form.visible_fields %} {% render_field field %} {% endfor %}
Intended Configuration
{% comment %} The attributes `contenteditable="true"` and `onbeforeinput="return false"` are used to let the block be selectable but not editable, emulating a textarea but supporting nested html tags. {% endcomment %}
{% endblock content %} {% block javascript %} {{ block.super }} {% endblock javascript %}