{% extends "portal/base.html" %} {% block title %}Timeline โ€” ClientPortal{% endblock %} {% block topbar_title %}Project Timeline{% endblock %} {% block content %}
Project Timeline
Visual overview of all project tasks, phases, and current progress.
Gantt Chart โ€” {{ project.start_date|date:"Y" }}
{{ project.start_date|date:"M" }} โ†’ {{ project.end_date|date:"M Y" }} ยท {{ project.total_tasks_count }} task{{ project.total_tasks_count|pluralize }}
Completed
In Progress
Delayed
Upcoming
{% if tasks %}
{% for month in months %}
{{ month.name }}
{% endfor %}
{% for task in tasks %}
{{ task.name }}
{{ task.team }}
{% if forloop.first %}
{% endif %}
{% if task.width_pct > 6 %}{{ task.name }}{% endif %}
{% endfor %}
{% else %}

No tasks have been added to this project yet.

{% endif %}
{% endblock %}