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

{{ employee.full_name }}

Employee Code: {{ employee.employee_code }} • Audit Firm {{ employee.tenant_id }} • Branch {{ employee.branch_id }}

Back {% if can_manage_employees(current_user, current_user_permissions, current_user_roles) %}Edit{% endif %}
{% if link_error %}
Unable to update login linkage. Please select an active user from the same audit firm and branch who is not already linked to another employee.
{% endif %}

Login user linkage

{% if employee.user_id %}

This employee is linked to {% if employee.user %}{{ employee.user.full_name or employee.user.email }}{% else %}User #{{ employee.user_id }}{% endif %}. Employee self-service pages will work for this login.

{% else %}

This employee is not linked to a login user yet. Attendance, My Workspace, profile, leave, documents and payslip self-service need this link.

{% endif %}
{% if can_manage_employees(current_user, current_user_permissions, current_user_roles) %}
{% endif %}

Basic Details

Email
{{ employee.email or '-' }}
Mobile
{{ employee.mobile or '-' }}
Department
{{ employee.department or '-' }}
Designation
{{ employee.designation or '-' }}
Employment Type
{{ employee.employment_type.replace('_',' ').title() }}
Date of Joining
{{ employee.date_of_joining or '-' }}
Date of Leaving
{{ employee.date_of_leaving or '-' }}
Linked User
{% if employee.user %}{{ employee.user.full_name or employee.user.email }} ({{ employee.user.email }}){% else %}Not linked{% endif %}

Statutory & Bank Details

PAN
{{ employee.pan or '-' }}
UAN
{{ employee.uan or '-' }}
ESI No
{{ employee.esi_no or '-' }}
PF No
{{ employee.pf_no or '-' }}
Bank Name
{{ employee.bank_name or '-' }}
Bank Account
{{ employee.bank_account_no or '-' }}
IFSC
{{ employee.bank_ifsc or '-' }}

Status

{{ employee.status.replace('_',' ').title() }}
{% if can_change_employee_status(current_user, current_user_permissions, current_user_roles) %}
{% endif %}

Emergency / Notes

Emergency Contact
{{ employee.emergency_contact_name or '-' }} {{ employee.emergency_contact_mobile or '' }}
Address
{{ employee.address or '-' }}
Notes
{{ employee.notes or '-' }}
{% endblock %}