{% extends "base.html" %} {% block title %}Task Management{% endblock %} {% block content %}
Total Tasks
{{ stats.total }}
To Do
{{ stats.todo }}
In Progress
{{ stats.in_progress }}
Completed
{{ stats.completed }}
On Hold
{{ stats.on_hold }}
Overdue
{{ stats.overdue }}
๐Ÿ” Search & Filters
๐Ÿ”„ Clear Filters
๐Ÿ“‹ Tasks
{% if tasks %}
{% for task in tasks %}
{{ task.title }}
{{ task.status }} {{ task.priority }} {% if task.category %} ๐Ÿ“ {{ task.category }} {% endif %}
{% if task.description %}
{{ task.description[:150] }}{% if task.description|length > 150 %}...{% endif %}
{% endif %}
{% if task.assigned_to %}
๐Ÿ‘ค {{ task.assigned_to }}
{% endif %} {% if task.due_date %}
๐Ÿ“… Due: {{ task.due_date }}
{% endif %} {% if task.created_by %}
โœ๏ธ {{ task.created_by }}
{% endif %}
๐Ÿ•’ {{ task.created_at[:10] }}
{% if task.tags %}
{% for tag in task.tags.split(',') %} ๐Ÿท๏ธ {{ tag.strip() }} {% endfor %}
{% endif %}
{% endfor %}
{% if total_pages > 1 %} {% endif %} {% else %}
๐Ÿ“

No tasks found. Create your first task to get started!

{% endif %}
{% endblock %}