{% extends 'pipeline/base.html' %} {% load i18n %} {% block page_title %}{{ page_title }}{% endblock %} {% block pipeline_content %}
| {% trans "User" %} | {% trans "Status" %} | {% trans "Progress" %} | {% trans "Assigned" %} | {% for step in steps %}{{ forloop.counter }} | {% endfor %}
|---|---|---|---|---|
| {{ a.user.username }} {% with main=a.user.profile.main_character %} {% if main %} {{ main.character_name }} {% endif %} {% endwith %} | {# Status badge #}{% if a.status == 'assigned' %} {% trans "Assigned" %} {% elif a.status == 'in_progress' %} {% trans "In Progress" %} {% else %} {% trans "Completed" %} {% endif %} | {# Progress bar #}
|
{# Assigned at #}
{{ a.assigned_at|timesince }} {% trans "ago" %} | {# Per-step icons #} {% for state in row.step_states %}{% if state.complete %} {% else %} {% if state.step.optional %} {% else %} {% endif %} {% endif %} | {% endfor %}
{% trans "No assignments for this flow yet." %}
{% else %}{% trans "No active assignments right now." %}
{% trans "Show Completed Assignments" %} {% endif %}