Kanban Board
Welcome,
{{ user.username }}
{% csrf_token %}
Logout
{% for column in columns %}
{{ column.name }}
{% for task in column.tasks.all %}
{{ task.title }}
{% if task.description %}
{{ task.description }}
{% endif %}
{% endfor %}
{% endfor %}