{% from "partials/board/_avatars.html" import avatar_stack %} {% from "partials/board/_chips.html" import chip_kind, chip_source, chip_parent, chip_repo, chip_deps %} {% from "partials/board/_card.html" import card_data_attrs %} {% macro list_row(c) %}
{{ c.id }}
{{ chip_kind(c.kind) }}{{ chip_parent(c.parent) }}{{ c.title }}
{% if c.agents %}{{ avatar_stack(c.agents) }}{% else %}{% endif %}
{% if c.sprint %}#{{ c.sprint }}{% else %}{% endif %}
{% if c.projects %}{{ chip_repo(c.projects) }}{% else %}{% endif %}
{% if c.depends %}{{ chip_deps(c.depends, c.alias) }}{% else %}{% endif %}
{{ c.upd_display }}
{% endmacro %}