{# Board view: columns (dropzones) and task cards. Expects: project, project_url, board_name, board_url, columns [ { status, label, tasks } ] #}

{{ project }} / {{ board_name }} board

{% for col in columns %}

{{ col.label }}

{% for task in col.tasks %} {% include "board_card.html" %} {% endfor %}
{% endfor %}