{% if view == 'prs' %} {% include "_prs.html" %} {% elif view == 'backlog' %} {% include "_backlog.html" %} {% elif view == 'list' %}
{% for c in list_order %}

{{ stage(c, 18) }}{{ c.replace('_', ' ') }}{{ cols[c]|length }}

{% if cols[c] %} {% endif %}
{% endfor %}
{% else %}
{% for c in columns %}

{{ stage(c, 16) }}{{ c.replace('_', ' ') }}{{ cols[c]|length }}

{% for row in cols[c] %}{% set t = row.task %} {{ t.id }}p{{ t.priority }} · {{ t.difficulty }} {{ t.title }}{% if t.discovered_from %}found{% endif %}{% if row.stack %}stack{% endif %}{% if row.merged_parent %}merged→parent{% endif %}{% if row.needs_human %}needs you{% endif %} {{ t.phase }}{% if row.blockers %} · waits on {{ row.blockers|join(', ') }}{% endif %}{% if t.id in active %} · {{ board_run_fact(active[t.id]) }}{% endif %}{% if t.pr %} · PR{% endif %} {% if row.question %}Q: {{ row.question[:110] }}{% endif %} {% endfor %}
{% endfor %}
{% endif %}