{% extends 'pipeline/base.html' %} {% load i18n %} {% block page_title %}{% trans "Manage Flows" %}{% endblock %} {% block pipeline_content %}

{% trans "Flow Manager" %}

{% trans "Create and manage Pipeline flows" %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if flows %}
{% for flow in flows %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Status" %} {% trans "Steps" %} {% trans "Active" %} {% trans "Completed" %} {% trans "Auto-assign" %} {% trans "Actions" %}
{{ flow.name }} {% if flow.description %}
{{ flow.description|truncatewords:12 }} {% endif %}
{{ flow.get_flow_type_display }} {% if flow.status == 'published' %} {% trans "Published" %} {% elif flow.status == 'draft' %} {% trans "Draft" %} {% else %} {% trans "Archived" %} {% endif %} {{ flow.step_count }} {{ flow.active_count }} {{ flow.completed_count }} {% if flow.auto_assign %} {% else %} {% endif %}
{% csrf_token %}
{% else %}

{% trans "No flows yet. Create your first flow to get started." %}

{% trans "Create Flow" %}
{% endif %}
{% endblock %}