{% extends "ui/templates/base/layout.html" %} {% block content %} {% set profile_photo_url = get_user_profile_photo_url(current_user) %} {% set profile_initials = get_user_initials(current_user) %}
{% include "modules/employees/templates/employees/_my_workspace_tabs.html" %}

My Profile

Maintain your profile photo and public contact details. Official HR fields remain controlled by admin.

{% if saved %}
Profile updated successfully.
{% endif %} {% if errors %}
{% endif %}
{% if profile_photo_url %} Profile photo {% else %}
{{ profile_initials }}
{% endif %}

{{ current_user.full_name or employee.full_name }}

{{ current_user.qualification or '' }}{% if current_user.qualification and (current_user.designation or employee.designation) %} • {% endif %}{{ current_user.designation or employee.designation or '' }}

{{ current_user.email }}

{% if current_user.bio %}
{{ current_user.bio }}
{% endif %}

Official Details

Employee Code
{{ employee.employee_code }}
Name
{{ employee.full_name }}
Department
{{ employee.department or '-' }}
Official Designation
{{ employee.designation or '-' }}

Public Profile

These details will be reused in dashboards and future client-facing auditor cards.

JPG, PNG, GIF or WebP. Maximum 2 MB.

Personal / HR Self-Service Details

{% endblock %}