{% extends 'pipeline/base.html' %} {% load i18n %} {% block page_title %}{% trans "Manage Flows" %}{% endblock %} {% block pipeline_content %}
| {% 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 %} |
{% trans "No flows yet. Create your first flow to get started." %}
{% trans "Create Flow" %}