{% extends "base.html" %} {% block title %}PDC Twin Dashboard — ICDEV™{% endblock %} {% block content %}
← Pipeline Canvas

PDC Twin Dashboard

Pipeline list with latest snapshot. Click Quick Diff to compare the two most recent snapshots, or View Twin for full simulation.

{% if pipelines %} {% for p in pipelines %} {% endfor %}
Pipeline Classification Last Snapshot Actions
{{ p.name }}
{% if p.description %}
{{ p.description[:80] }}
{% endif %}
{{ p.classification or 'public' }} {% if p.last_snapshot %}
{{ p.last_snapshot.label }}
{{ p.last_snapshot.node_count }}n · {{ p.last_snapshot.created_at[:10] }}
{% else %} No snapshots {% endif %}
View Twin {% if p.last_snapshot and p.prev_snapshot %} Quick Diff {% endif %}
{% else %}

No pipelines yet

Create your first pipeline in the Pipeline Canvas.

{% endif %}
{% endblock %}