{% extends "base.html" %} {% load scoped_tags %} {% block title %}Pipelines{% endblock %} {% block page_title %}Pipelines{% endblock %} {% block page_subtitle %}Stages, promotions, and flow channels (Layer 9){% endblock %} {% block layer_indicator %}L9 Flow{% endblock %} {% block content %}
{{ pipelines|length }} pipeline{{ pipelines|length|pluralize }}
{% if pipelines %}
{% for pipeline in pipelines %}

{{ pipeline.name }}

ID: {{ pipeline.id|truncate_id:12 }} · Created: {{ pipeline.created_at|format_dt }}

{% include "components/_state_badge.html" with state=pipeline.lifecycle %}
{# Stage visualization — horizontal connected cards #} {% with stages=stages_by_pipeline|get_item:pipeline.id %} {% if stages %}
{% for stage in stages %}
{% if not forloop.first %} {# Arrow connector #}
{% endif %} {# Stage card #}
{{ stage.name }}
Ordinal {{ stage.ordinal }}
{% with count=promo_counts|get_item:stage.id %} {% if count %}
{{ count }} promotion{{ count|pluralize }}
{% endif %} {% endwith %}
{% endfor %}
{% else %}

No stages defined for this pipeline.

{% endif %} {% endwith %}
{% endfor %}
{% else %} {% include "components/_empty_state.html" with title="No pipelines" message="No flow pipelines have been configured yet." %} {% endif %} {% endblock %}