{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/managers/templates/managers/_manager_tabs.html" %}

Team Workspace

Allocation, follow-up and team execution control

Focus on unassigned work, blocked assignments, due dates, team attendance and review-ready tasks.

{% if current_user_roles and ('Partner' in current_user_roles or 'Firm Admin' in current_user_roles) %}

Multi-role view enabled: partner/admin responsibilities may also apply.

{% endif %}
Open Team Work Board {% if current_user_roles and 'Partner' in current_user_roles %}Partner Dashboard{% endif %}
Total Tasks
{{ payload.summary.total }}
All visible work
Unassigned
{{ payload.summary.unassigned }}
Allocate first
In Progress
{{ payload.summary.in_progress }}
Being worked
Blocked
{{ payload.summary.blocked }}
Needs help
Overdue
{{ payload.summary.overdue }}
Escalate
Completed
{{ payload.summary.completed }}
Closed tasks

Attention Required

Unassigned, blocked and overdue work should be handled first.

View All
{% set shown = namespace(count=0) %} {% for column in payload.columns %} {% if column.code in ['unassigned', 'blocked'] and column.tasks %}
{{ column.label }}
{{ column.tasks|length }} item(s)
{% for task in column.tasks[:6] %} {% set shown.count = shown.count + 1 %}
{{ task.task_name }}
{{ task.client_display }} · {{ task.engagement_label }}
Target: {{ task.internal_target_date or '-' }} · {{ task.date_bucket }}
Timeline
{% endfor %}
{% endif %} {% endfor %} {% if shown.count == 0 %}
No team assignments require manager attention right now.
{% endif %}
{% endblock %}