{% extends "ui/templates/base/layout.html" %} {% block content %}

Engagements

Year-wise client service engagements with locking for completed years.

{% if can_manage %} {% endif %}
{% if locked_count or skipped_count %}
{% if locked_count %}{{ locked_count }} engagement{{ 's' if locked_count != 1 else '' }} locked.{% endif %} {% if skipped_count %}{{ skipped_count }} skipped because already locked or not permitted.{% endif %}
{% endif %}
{% if include_inactive %}{% endif %} {% if can_lock_engagements %}

Select completed engagements and lock them in bulk. Locked engagements become read-only history.

{% endif %}
{% if can_lock_engagements %}{% endif %} {% for row in rows %} {% if can_lock_engagements %}{% endif %} {% else %} {% endfor %}
Client Service FY / AY Due Date Type Assigned Users Status Action
{% if not row.is_locked %}{% endif %}
{{ row.client.client_name if row.client else '-' }}
{{ row.client.client_code if row.client else '' }}
{{ row.catalogue.service_name if row.catalogue else '-' }}
{{ row.catalogue.service_code if row.catalogue else '' }}
FY: {{ row.financial_year or '-' }}
AY: {{ row.assessment_year or '-' }}
Current: {{ row.current_due_date or '-' }}
Original: {{ row.original_due_date or '-' }}
{% if row.expiry_date %}
Expiry: {{ row.expiry_date }}
{% endif %}{% if row.due_date_source %}
{{ row.due_date_source|replace('_',' ')|title }}
{% endif %}
{{ 'Assurance' if row.engagement_type == 'assurance' else 'Non-Assurance' }}
Partner: {{ row.assigned_partner.full_name if row.assigned_partner and row.assigned_partner.full_name else (row.assigned_partner.email if row.assigned_partner else '-') }}
Manager: {{ row.assigned_manager.full_name if row.assigned_manager and row.assigned_manager.full_name else (row.assigned_manager.email if row.assigned_manager else '-') }}
Staff: {{ row.assigned_staff.full_name if row.assigned_staff and row.assigned_staff.full_name else (row.assigned_staff.email if row.assigned_staff else '-') }}
Review: {{ row.review_partner.full_name if row.review_partner and row.review_partner.full_name else (row.review_partner.email if row.review_partner else '-') }}
{{ 'Locked' if row.is_locked else row.status|replace('_',' ')|title }}{% if not row.is_active %} / Inactive{% endif %} View{% if can_view_documents(current_user, current_user_permissions, current_user_roles) %}Docs{% endif %}{% if can_manage and not row.is_locked %}Edit{% endif %}
No engagements found for this financial year.
{% endblock %}