{% extends "aa_kanban/base.html" %} {% load i18n %} {% load static %} {% load kanban_tags %} {% block page_title %}{% trans "Kanban Summary" %}{% endblock %} {% block extra_css %} {% endblock %} {% block aa_kanban_content %}

{% trans "Summary View" %}

{% trans "Overview of all boards and their tasks." %}

{% trans "Back" %}
{% if boards %}
{% for col in default_columns %}
{{ col }}
{% endfor %}
{% for board in boards %}
{{ board.name }}
{% for col in default_columns %}
{% with column_cards=board.lists.all|get_cards_for_column:col %} {% for card in column_cards %} {% include "aa_kanban/partials/card_item.html" with card=card can_write=False hide_menu=True summary_mode=True %} {% empty %}
{% trans "No cards" %}
{% endfor %} {% endwith %}
{% endfor %}
{% endfor %} {% else %}

{% trans "No accessible boards found." %}

{% endif %}
{% endblock %}