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

My Compliance

Service-wise status and pending actions visible to you.

Pending from Client
{{ pending_from_client or 0 }}
With Firm
{{ with_firm or 0 }}
Clarification Required
{{ clarification_required or 0 }}
Completed
{{ completed_engagements or 0 }}
{% for row in engagements %}

{{ row.catalogue.service_name if row.catalogue else 'Service' }}

FY {{ row.financial_year }}{% if row.assessment_year %} • AY {{ row.assessment_year }}{% endif %}

{{ row.status|replace('_',' ')|title }}
Due Date
{{ row.current_due_date.strftime('%d-%m-%Y') if row.current_due_date else '-' }}
Firm Contact
{{ row.assigned_manager.full_name if row.assigned_manager else (row.assigned_partner.full_name if row.assigned_partner else 'Firm team') }}
Status
{{ row.status|replace('_',' ')|title }}
{% else %}
No active compliance services are assigned yet.
{% endfor %}
{% endblock %}