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

Registrations & Renewals

Expiry, periodic updates, generated renewal work and escalation.

{% if can_manage %}
Lifecycle Masters
{% endif %}
{% for label,value in [('Active',counts.active),('Due / Update Due',counts.due),('Expired',counts.expired),('Open Renewal Tasks',counts.tasks)] %}
{{ label }}
{{ value }}
{% endfor %}
Open renewal and update work
{% for task,client in tasks %}{% else %}{% endfor %}
DueClientWorkStatus
{{ task.cycle_due_date }}{{ client.client_name }}{{ task.title }}{{ task.status|replace('_',' ')|title }}
No open lifecycle work.
Client registrations
{% for reg,client,rt in registrations %}{% else %}{% endfor %}
ClientTypeNumberExpiry / Next actionStatus
{{ client.client_name }}{{ rt.name }}{{ reg.registration_number }}{{ reg.valid_until or reg.next_action_date or '—' }}{{ reg.status|replace('_',' ')|title }}
No registration records.
{% endblock %}