{% extends "tasks/base.html" %} {% load tasks_tags %} {% block title %}Dashboard — Staff Panel{% endblock %} {% block topbar_title %}Dashboard{% endblock %} {% block content %}
Active Projects
{{ active_projects_count }}
Currently in progress
Overdue Tasks
{{ overdue_tasks_count }}
Past their due date
My Tasks
{{ my_tasks_count }}
Assigned to you
Due This Week
{{ upcoming_deadlines|length }}
Next 7 days
My Tasks
Currently assigned to you
{% if request.user|has_perm:"view_projects" %} All Projects {% endif %}
{% for task in my_tasks %}
{{ task.get_priority_display }} {{ task.title }} {{ task.project.name }} {% if task.due_date %} {{ task.due_date|date:"d M" }} {% endif %}
{% empty %}

No active tasks assigned to you.

{% endfor %}
{% if overdue_tasks %}
⚠ Overdue Tasks
{% for task in overdue_tasks %}
{{ task.title }} {{ task.project.name }} Due {{ task.due_date|date:"d M" }}
{% endfor %}
{% endif %}
Active Projects
Progress overview
{% if request.user|has_perm:"view_projects" %} View All {% endif %}
{% for project in projects_overview %}
{{ project.name }}
{{ project.client.company_name }} {{ project.progress_percentage }}%
{{ project.completed_tasks_count }}/{{ project.total_tasks_count }} tasks · {{ project.days_remaining }} days left
{% empty %}

No active projects.

{% endfor %}
Recent Activity
{% for log in recent_activity %}
{{ log.user|initials }}
{{ log.user.get_full_name }} {{ log.get_action_display|lower }} {{ log.target_title }} {% if log.project %}in {{ log.project.name }}{% endif %}
{{ log.created_at|timesince }} ago
{% empty %}

No recent activity.

{% endfor %}
{% endblock %}