{% extends "tasks/base.html" %} {% load static tasks_tags %} {% block title %}{{ project.name }} — Kanban{% endblock %} {% block topbar_title %}{{ project.name }}{% endblock %} {% block topbar_actions %} {{ project.progress_percentage }}% {% if request.user|has_perm:"create_task" %} + Task {% endif %} {% endblock %} {% block content %}
Overview Kanban Gantt Docs Assets
{% for status in kanban_statuses %}
{% kanban_column_icon status %} {% kanban_column_label status %}
{{ tasks_by_status|get_item:status|length }}
{% for task in tasks_by_status|get_item:status %}
{{ task.title }}
{% for user in task.assigned_to.all %}
{{ user|initials }}
{% empty %} Unassigned {% endfor %}
{% if task.due_date %}
📅 {{ task.due_date|date:"d M" }}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}