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

My Work

One card per assigned engagement. Start, continue, follow up or view the full workflow from here.

{% if not employee %}

Your login is not linked to an employee master

You may still see tasks assigned directly to your user ID, but attendance, profile, leave, documents and payslip self-service require an employee master link.

{% endif %}
Engagements
{{ work_payload.summary.total }}
Open
{{ work_payload.summary.open }}
In Progress
{{ work_payload.summary.in_progress }}
Blocked
{{ work_payload.summary.blocked }}
Overdue
{{ work_payload.summary.overdue }}
Completed
{{ work_payload.summary.completed }}
{% for column in work_payload.columns %}

{{ column.label }}

{% if column.code == 'pending' %}

Assigned engagements where work has not started.

{% endif %} {% if column.code == 'in_progress' %}

Started engagements with remaining assigned work.

{% endif %} {% if column.code == 'blocked' %}

Engagements waiting for documents, clarification, review or another dependency.

{% endif %} {% if column.code == 'completed' %}

All tasks assigned to you in these engagements are complete.

{% endif %}
{{ column.cards|length }}
{% for card in column.cards %}
{{ card.client_code or 'Client' }}

{{ card.client_name }}

{% if card.is_overdue %}Overdue{% elif card.is_due_today %}Due today{% endif %}
{{ card.service_name }}
FY {{ card.financial_year }} ยท Due {{ card.due_date or '-' }}
My progress {{ card.progress_percent }}%
{{ card.completed_count }} of {{ card.task_count }} assigned tasks completed
{% if column.code == 'blocked' %}
Pending reason
{{ card.blocked_reason }}
{% if card.blocked_notes %}
{{ card.blocked_notes }}
{% endif %} {% if card.follow_up_date %}
Follow-up: {{ card.follow_up_date }}
{% endif %} {% if card.blocked_task_name %}
Task: {{ card.blocked_task_name }}
{% endif %}
{% elif card.next_task_name and column.code != 'completed' %}
Next: {{ card.next_task_name }}
{% endif %} {% if card.latest_comment %}

Latest: {{ card.latest_comment.message }}

{% endif %} {% if column.code == 'pending' %}
{% elif column.code == 'in_progress' %} Continue {% elif column.code == 'blocked' %} Open / Follow Up {% if card.manual_blocker %}
{% endif %} {% else %} View {% endif %}
{% else %}
No engagement cards in this section.
{% endfor %}
{% endfor %}
{% endblock %}