{% extends "base.html" %} {% block title %}My Process Tasks — Process-Ify{% endblock %} {% block content %}

My Process Tasks

{{ tasks|length }} active ← Back to Process-Ify
{% if current_role %} Clear {% endif %}
{% if not tasks %}
No active process tasks
All caught up{% if current_role %} for role "{{ current_role }}"{% endif %}.
{% else %}
{% for task in tasks %}
{{ task.title }}
{% if task.description %}
{{ task.description[:200] }}{% if task.description|length > 200 %}…{% endif %}
{% endif %}
{{ task.status|replace('_',' ')|title }} {{ task.priority|title }} priority Updated {{ task.updated_at|string|truncate(10, killwords=True, end='') if task.updated_at else '—' }} {{ task.id }}
{% endfor %}
{% endif %}
{% endblock %}