{% from "partials/board/_avatars.html" import avatar_stack %} {% from "partials/board/_chips.html" import chip_kind %} {% from "partials/board/_card.html" import card_data_attrs %}
{% if tree_rows %} {% for c in tree_rows %} {%- for flag in c.pipe_flags -%} {%- endfor -%} {%- if c.depth > 0 -%} {%- endif -%} {{ chip_kind(c.kind) }} {{ c.id }} {{ c.status }} {{ c.title }} {% if c.agents %}{{ avatar_stack(c.agents) }}{% endif %} {% if c.sprint %}#{{ c.sprint }}{% endif %} {% endfor %} {% else %}
No tickets to render.
{% endif %}