{% extends "base.html" %} {% block content %}

Kanban Board

Zur Listenansicht
{% for col in columns %}
{{ col.title }} {{ col.count }}
{% for c in col.cards %}
{{ c.nr }}
{{ c.titel }}
{{ c.prio }} {{ c.kategorie }} {{ c.initials }}
{% endfor %} {% if col.cards.is_empty() %}
Keine Tickets.
{% endif %}
{% endfor %}
{% endblock %}