{% extends "base.html" %} {% load helpers %} {% block title %}Intents — Grouped by Domain{% endblock title %} {% block content %}
{# ── Breadcrumb / header ──────────────────────────────────────────── #} {# ── Title row ────────────────────────────────────────────────────── #}

Intents — Grouped by Domain {{ total }} total

Table View New Intent
{# ── Filter notice ────────────────────────────────────────────────── #} {% if active_filters %}
Filters active — showing a filtered subset. Clear filters
{% endif %} {# ── Empty state ──────────────────────────────────────────────────── #} {% if not grouped_intents %}
No intents found.
{% endif %} {# ── Domain accordion ─────────────────────────────────────────────── #}
{% for group in grouped_intents %}
{# Panel heading / toggle ─────────────────────────────────── #} {# Collapsible body ─────────────────────────────────────────── #}
{% for intent in group.intents %} {% endfor %}
Intent ID Type Tenant Status Approved Deployed
{{ intent.intent_id }} {{ intent.get_intent_type_display }} {% if intent.tenant %} {{ intent.tenant }} {% else %} — {% endif %} {{ intent.status }} {% if intent.is_approved %} {% else %} {% endif %} {% if intent.deployed_at %} {{ intent.deployed_at|date:"d M Y H:i" }} {% else %} — {% endif %}
{% endfor %}
{% endblock content %}