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

{{ tasks|length }}

Total Tasks

{{ tasks|selectattr('status.value', 'equalto', 'Completed')|list|length }}

Completed

{{ tasks|selectattr('status.value', 'equalto', 'In Progress')|list|length }}

In Progress

{{ tasks|selectattr('status.value', 'equalto', 'Not Started')|list|length }}

Not Started

{% if tasks %}

Project Tasks

{% for task in tasks %}

{{ task.name }}

{{ task.status.value }} {{ task.priority.value }}

{{ task.description or 'No description' }}

Assigned to: {% if task.assigned_to %} {{ task.assigned_to.username }} {% else %} Unassigned {% endif %}
Due Date: {% if task.due_date %} {{ task.due_date.strftime('%Y-%m-%d') }} {% else %} No due date {% endif %}
Estimated Hours: {% if task.estimated_hours %} {{ task.estimated_hours }}h {% else %} Not estimated {% endif %}
Time Logged: {{ (task.total_time_logged / 3600)|round(1) }}h
Progress: {{ task.progress_percentage }}%
{% if task.subtasks %}
Subtasks ({{ task.subtasks|length }})
{% for subtask in task.subtasks %}
{{ subtask.name }} {{ subtask.status.value }} {% if subtask.assigned_to %} {{ subtask.assigned_to.username }} {% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No Tasks Created Yet

Start organizing your project by creating tasks.

{% endif %}
{% endblock %}