{% extends "base.html" %} {% block content %}

📋 Kanban

⏱ Timeline 🌳 Arcs {{ '↑ A-Z' if sort == 'asc' else '↓ Z-A' }} Alfa Abertas All {% for ws_name in workspaces %} {{ ws_name }} {% endfor %}
🔴 critical 🟠 high 🔵 medium ⚪ low done work review blocked queue
{% for status in statuses %}
{{ status }}
{% endfor %}
{% for lane in lanes %}
{% if lane.id != '__other__' %}🌳{% endif %} {{ lane.title }} (abertas/totais: {{ lane.open_count }}/{{ lane.total_count }})
{% if lane.sublanes %} {% for sub in lane.sublanes %}
{% if sub.title %}
📁 {{ sub.title }} ({{ sub.open_count }}/{{ sub.total_count }})
{% endif %}
{% for status in statuses %}
{% for item in sub.columns[status] %}
{{ item.priority_emoji }} {{ item.title }}
{% endfor %}
{% endfor %}
{% endfor %} {% else %}
{% for status in statuses %}
{% for item in lane.columns[status] %}
{{ item.priority_emoji }} {{ item.title }}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}