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

{{client.client_name}} — Registrations

← Dashboard

Registration records

{% for r,t in registrations %}
{{t.name}} — {{r.registration_number}}
Valid until: {{r.valid_until or '—'}} · Next action: {{r.next_action_date or '—'}} · {{r.status}}
{% else %}

No records.

{% endfor %}

Related persons and DSC

{% for p in people %}
{{p.full_name}} — {{p.person_type}}{% if p.din %} · DIN {{p.din}}{% endif %}
{% endfor %}{% for d,p in dscs %}
DSC: {{p.full_name}} · expires {{d.expires_on}} · {{d.status}}
{% endfor %}
{% if can_manage %}

Add Related Person

Add Registration

Add DSC

{% endif %}
{% endblock %}