{% extends "client/base_site.html" %} {% load i18n static %} {% block title %}Profile - Dashboard{% endblock %} {% block topbar %} {% include "client/topbar.html" %} {% endblock %} {% block content %}
{% block breadcrumbs %} {% include "client/breadcrumbs.html" with title="Profile" %} {% endblock %} {% if client %}

Personal Information

Client Number:
{{ client.client_number }}
Full Name:
{{ client.firstname }} {{ client.lastname }} {{ client.othername|default:"" }}
Gender:
{{ client.gender }}
Date of Birth:
{{ client.date_of_birth }}
Nationality:
{{ client.nationality }}
Country of Residence:
{{ client.country_of_residence }}
ID Type:
{{ client.id_type }}
ID Number:
{{ client.id_number }}
Primary Phone:
{{ client.telephone1 }}
Secondary Phone:
{{ client.telephone2|default:"—" }}
Email:
{{ client.email|default:"—" }}
Address:
{{ client.address }}
Date Joined:
{{ client.created_at }}
{% if client.photo %}
Client Photo
{% endif %}
{% else %}
No client information found for this user.
{% endif %} {% if next_of_keens %}

Next of keen

{% for keen in next_of_keens %} {% endfor %}
Full Name: Client Number: Gender: Date of Birth: Nationality: Country of Residence: Phone: Email: Relationship: Address: Photo:
{{ keen.firstname }} {{ keen.lastname }} {{ keen.othername|default:"" }} {{ keen.client.client_number }} {{ keen.client.gender }} {{ keen.client.date_of_birth }} {{ keen.client.nationality }} {{ keen.client.country_of_residence }} {{ keen.telephone }} {{ keen.email|default:"—" }} {{ keen.relationship }} {{ keen.address }} {% if keen.photo %} {% endif %}
{% else %}
No Next of Keen information found for this client.
{% endif %}
{% block footer %}{% include "client/footer.html" %}{% endblock %}
{% endblock %}