{% extends 'generic/_base.html' %} {% load render_table from django_tables2 %} {% block title %}Intent Authority Map{% endblock %} {% block content %}

Intent Authority Map

Review the currently authoritative ROA intent for each active profile, together with policy lineage, reconciliation posture, and downstream execution state.

{{ filter_form.organization }}
{{ filter_form.intent_profile }}
{{ filter_form.address_family }}
{{ filter_form.derived_state }}
{{ filter_form.exposure_state }}
{{ filter_form.delegated_entity }}
{{ filter_form.managed_relationship }}
{{ filter_form.run_state }}
{{ filter_form.drift_state }}
{{ filter_form.q }}
Reset
Authoritative Subjects
{{ result.total_row_count }}
Rows visible after filters
Unreconciled
{{ result.run_state_counts.unreconciled|default:0 }}
Authoritative intents with no current evidence
With Drift
{{ result.run_state_counts.reconciled_with_drift|default:0 }}
Reconciled rows that disagree with runtime state
Missing Runtime ROA
{{ result.drift_counts.missing|default:0 }}
Authoritative rows missing from runtime evidence
Overlapping Profiles
{{ result.overlap_count }}
Rows covered by multiple active profiles
Excluded Profiles
{{ result.excluded_profile_count|add:result.no_derivation_profile_count }}
{{ result.excluded_profile_count }} disabled or draft, {{ result.no_derivation_profile_count }} without derivation
{% if result.profiles_with_stale_bindings %}
{{ result.profiles_with_stale_bindings|length }} profiles have stale or invalid template bindings. Authority may not reflect the latest template policy.
{% endif %}
{% if result.rows %}
{% render_table table %}
{% else %}
{% if filters_applied %} No authoritative intent rows match the current filters. {% else %} No active routing intent profiles have completed derivation runs. Create a profile and run derivation to populate this page. {% endif %}
{% endif %} {% endblock %}