{% extends 'generic/_base.html' %} {% block title %}Create Bulk Intent Run{% endblock %} {% block content %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}

Create Bulk Intent Run

Run the routing-intent derivation and reconciliation workflow across a selected set of profiles or template bindings for {{ organization }}.

{% for field in form.visible_fields %}
{{ field.label_tag }} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endblock %}