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

{{task.title}}

← Dashboard

Lifecycle work

Client
{{client.client_name}}
Registration
{{registration_type.name}} — {{registration.registration_number}}
Due
{{task.cycle_due_date}}
Status
{{task.status}}

Document checklist

{% for d in documents %}
{{d.document_name}} {% if d.mandatory %}*{% endif %} — {{d.status}}
{% else %}

No template requirements.

{% endfor %}

History

{% for a in actions %}
{{a.action_type|title}} · {{a.completion_date or a.created_at_utc.date()}} · {{a.acknowledgement_number or ''}}
{% else %}

No completed lifecycle actions.

{% endfor %}
{% if can_manage %}

Update progress

Complete and schedule next cycle

{% endif %}
{% endblock %}