Assigned Tasks
{{ stats.assigned_tasks }}
Total assigned to you
Pending Tasks
{{ stats.pending_tasks }}
Not started yet
In Progress
{{ stats.in_progress_tasks }}
Currently working on
Completed
{{ stats.completed_tasks }}
Successfully finished
My Assigned Tasks ({{ tasks.count }})
{% for task in tasks %}
{% endfor %}
{% else %}
{{ task.title }}
{{ task.project.title }}
{{ task.get_status_display }}
{{ task.get_priority_display }}
{{ task.description|truncatewords:30 }}
{% if task.status == 'pending' %}
{% elif task.status == 'in_progress' %}
{% elif task.status == 'completed' %}
Completed on {{ task.completed_at|date:"M d, Y" }}
{% endif %}
View Details
No Tasks Assigned Yet
You will see tasks here when Project Managers assign them to you.