Project Manager Dashboard

Assigned Projects

{{ stats.assigned_projects }}
Total assigned to you

Total Tasks

{{ stats.total_tasks }}
All project tasks

Completed Tasks

{{ stats.completed_tasks }}
Successfully finished

Pending Tasks

{{ stats.pending_tasks }}
Awaiting action

My Assigned Projects ({{ projects.count }})

{% if projects %} {% for project in projects %} {% endfor %}
Project Client CRM Staff Status Budget Created Actions
{{ project.title }} {{ project.client.get_full_name }} {{ project.crm.get_full_name|default:"Not assigned" }} {{ project.get_status_display }} ${{ project.budget|default:"N/A" }} {{ project.created_at|date:"M d, Y" }} View
{% else %}

No Projects Assigned Yet

You will see projects here when CRM staff assigns them to you.

{% endif %}

Recent Tasks ({{ tasks|length }})

{% if tasks %} {% for task in tasks %} {% endfor %}
Task Project Assigned To Status Due Date Actions
{{ task.title }} {{ task.project.title }} {{ task.assigned_to.get_full_name|default:"Unassigned" }} {{ task.get_status_display }} {{ task.due_date|date:"M d, Y"|default:"No deadline" }} View Project
{% else %}

No Tasks Yet

Tasks will appear here as you create them for your projects.

{% endif %}