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

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

{% trans "Inbox" %}

{% 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 %}

{% trans "Done" %}

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