{% load i18n %} {% if pipeline_items %}
| {% trans "Activity" %} | {% trans "Progress" %} | {% trans "Action" %} |
|---|---|---|
|
{{ item.flow.name }}
{% if item.flow.description %}
{{ item.flow.description|truncatewords:20 }}
{% endif %}
|
{{ item.completed }} / {{ item.total }} {% trans "steps" %}
{{ item.pct }}%
|
{% if item.assignment.status == 'completed' %} {% trans "Review" %} {% elif item.assignment.status == 'in_progress' %} {% trans "Continue" %} {% else %} {% trans "Begin" %} {% endif %} |