{% extends "tasks/base.html" %} {% block title %}{{ project.name }} — Gantt{% endblock %} {% block topbar_title %}{{ project.name }}{% endblock %} {% block content %}
Overview Kanban Gantt Docs Assets
Timeline
{{ project.start_date|date:"M Y" }} → {{ project.end_date|date:"M Y" }}
Completed
In Progress
Delayed
Upcoming
{% for month in months %}
{{ month.name }}
{% endfor %}
{% if tasks %}
{% for task in tasks %}
{{ task.name }}
{{ task.team }}
{% if forloop.first %}
{% endif %}
{% if task.width_pct > 8 %}{{ task.name }}{% endif %}
{% endfor %}
{% else %}

No tasks with dates to display.

{% endif %}
{% endblock %}