{% extends "aa_kanban/base.html" %} {% load i18n %} {% block page_title %}{% trans "Kanban Boards" %}{% endblock %} {% block aa_kanban_content %}

{% trans "Kanban Boards" %}

{% trans "Select a board to view tasks, or manage your assigned projects." %}

{% if can_manage %}
{% trans "Settings" %}
{% endif %}
{% if boards %}
{% for board in boards %}

{{ board.name }}

{% if request.user.is_superuser or board.created_by == request.user or board in request.user.kanban_write_boards.all %} {% trans "Editor" %} {% else %} {% trans "Read-Only" %} {% endif %}

{% if board.description %} {{ board.description|truncatewords:20 }} {% else %} {% trans "No description provided." %} {% endif %}

{{ board.list_count }} {% trans "columns" %} {{ board.updated_at|date:"d M Y" }}
{% endfor %}
{% else %}

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

{% if can_manage %}

{% trans "Create your first board to get started." %}

{% else %}

{% trans "You currently do not have access to any Kanban boards. Contact an administrator to be added to the appropriate group." %}

{% endif %}
{% endif %}
{# Modal container voor board-aanmaak #} {% endblock %}