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

Run Routing Intent Profile

Queue the standard routing-intent derivation and reconciliation workflow for {{ profile }}.

Organization
{{ profile.organization }}
Status
{{ profile.status }}
Enabled
{{ profile.enabled }}
{% for error in form.non_field_errors %} {% endfor %} {% for field in form.visible_fields %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}