{% extends "base.html" %} {% macro figure_card(item) %} {% set card = item.card %} {% endmacro %} {% block content %}

Workflow tag set

{{ board_card_count }} cards {{ state.board.columns | length }} stages {{ state.board.conflicting_cards | length }} conflicts
{% for warning in state.board.warnings %}
Board data note {{ warning }}
{% endfor %} {% if state.board.tag_set %}
{% for item in board_columns %}
{{ item.column.label }} {{ item.cards | length }}
{% for card in item.cards %} {{ figure_card(card) }} {% endfor %}

No cards in this stage

{% endfor %} {% if service_config.dashboard.kanban_include_unassigned %}
Unassigned {{ board_unassigned | length }}
{% for card in board_unassigned %} {{ figure_card(card) }} {% endfor %}

Every incomplete item has a {{ state.board.tag_set }} tag

{% endif %}

Read-only board · Column order follows the Curio tag catalog · Select a card for traceable figure details

{% else %}

No workflow tag set available

Add a Curio tag set to build a cross-project read-only board.

{% endif %} {% endblock %}