{% extends "base.html" %} {% block title %}Pipeline Design Canvas — ICDEV™{% endblock %} {% block content %}

Pipeline Design Canvas

Visual DevSecOps pipeline designer — cloud-agnostic, multi-cloud, on-premises. Drag-and-drop 100+ tools across 13 categories.

+ New Pipeline SRE Dashboard
{{ pipelines | length }}
Pipelines
{{ templates | length }}
Templates
{{ snippets | length }}
Snippets
{{ stages | length }}
Stages
{% if pipelines %}
Recent Pipelines
{% for p in pipelines %}

{{ p.name }}

{{ p.description or 'No description' }}

{{ p.target_csp or 'generic' }} · {{ p.classification or 'public' }} · {{ p.updated_at[:10] if p.updated_at else '' }}
{% endfor %}
{% endif %}
Templates
{% for t in templates %}

{{ t.name }}

{{ t.description or '' }}

{{ t.category or '' }} {% for tag in (t.tags if t.tags is iterable and t.tags is not string else []) %} {{ tag }} {% endfor %}
{% endfor %}
Pre-Built Snippets
{% for s in snippets %}

{{ s.name }}

{{ s.description or '' }}

{{ s.category or '' }} {% for tag in (s.tags if s.tags is iterable and s.tags is not string else []) %} {{ tag }} {% endfor %}
{% endfor %}
{% endblock %}