{% extends 'core/base.html' %} {% block content %} ← Kanbans

{{ kanban.name }} #{{ kanban.tag.name }}

Eingang

{% for item in inbox_items %}{% include 'core/_kanban_card.html' %}{% empty %}
Leer.
{% endfor %}

Todo

{% for item in todo_items %}{% include 'core/_kanban_card.html' %}{% empty %}
Leer.
{% endfor %}

In Progress

{% for item in progress_items %}{% include 'core/_kanban_card.html' %}{% empty %}
Leer.
{% endfor %}

Erledigt

{% for item in done_items %}{% include 'core/_kanban_card.html' %}{% empty %}
Leer.
{% endfor %}
{% endblock %}