{% extends 'tasks/base.html' %} {% block title %}Dashboard{% endblock %} {% block content %}

My Tasks

Welcome, {{ request.user.username }}! Logout
Total Tasks

{{ total_tasks }}

Completed

{{ completed_tasks }}

Pending

{{ pending_tasks }}

Progress

{{ completion_percentage }}%

Overall Progress
{{ completion_percentage }}% Complete
{% if tasks %} {% for task in tasks %}
{% if task.is_completed %} {% else %} {% endif %}
{{ task.title }}

{{ task.description|truncatechars:100 }}

{% if task.category == 'work' %} 💼 Work {% elif task.category == 'personal' %} 👤 Personal {% else %} 📚 Study {% endif %} {% if task.priority == 'high' %} 🔴 High Priority {% elif task.priority == 'medium' %} 🟡 Medium Priority {% else %} 🟢 Low Priority {% endif %} Due: {{ task.due_date }}
{% endfor %} {% else %}
No tasks yet!

Click the "Add New Task" button to create your first task.

{% endif %}
{% endblock %}