{% extends 'base.html' %} {% load static %} {% block title %}Profile - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}

My Profile

View and manage your personal information and account settings.

✏️ Edit Profile
Profile image

{{ user.get_full_name }}

{{ user.get_role_display }}

{{ user.get_status_display }} {% if user.is_verified %} Verified {% endif %}

👤 Basic Information

Full Name
{{ user.get_full_name|default:"Not provided" }}
Username
{{ user.username }}
Email
{{ user.email|default:"Not provided" }}
Phone Number
{{ user.phone_number|default:"Not provided" }}
Date Joined
{{ user.date_joined|date:"M d, Y" }}
{% if user.branch %}
Assigned Branch
{{ user.branch.name }}
{% endif %} {% if user.last_login %}
Last Login
{{ user.last_login|date:"M d, Y H:i" }}
{% endif %}

Account Information

Role
{{ user.get_role_display }}
Status
{{ user.get_status_display }}
Staff Member
{% if user.is_staff %} Yes {% else %} No {% endif %}
Superuser
{% if user.is_superuser %} Yes {% else %} No {% endif %}
{% if user.verification_date %}
Verified Date
{{ user.verification_date|date:"M d, Y" }}
{% endif %} {% if user.verified_by %}
Verified By
{{ user.verified_by.get_full_name }}
{% endif %} {% if user.role == 'admin' and selected_branch %}
Currently Selected Branch
{{ selected_branch.name }}
{% endif %}
{% if user.is_staff %}

Staff Information

{% if user.role == 'loan_officer' or user.role == 'team_leader' %}
Portfolio Clients
{{ user.portfolio_clients.count }} clients assigned
{% endif %}
Account Created
{{ user.created_at|date:"M d, Y H:i" }}
Last Updated
{{ user.updated_at|date:"M d, Y H:i" }}
{% endif %}
{% endblock %}