{% extends "base.html" %}{% block content %}

{{ employee.full_name }}

{{ employee.employee_code }}
{% if can_manage_profile %}Employment ActionEdit Profile{% endif %}

Employment

Company: {{ employee.company }}

Branch: {{ employee.branch }}

Department: {{ employee.department }}

Designation: {{ employee.designation }}

Joining Date: {{ employee.joining_date }}

Employment End: {{ employee.employment_end_date|default:"—" }}

Status: {{ employee.get_status_display }}

Reporting Manager: {{ employee.reporting_manager|default:"—" }}

Shift: {{ employee.shift|default:"—" }}

OT Eligible: {{ employee.ot_eligible|yesno:"Yes,No" }}

Contact & Personal

Mobile: {{ employee.mobile|default:"—" }}

Email: {{ employee.email|default:"—" }}

NID/Passport: {{ employee.nid_or_passport|default:"—" }}

Blood Group: {{ employee.blood_group|default:"—" }}

Present Address: {{ employee.present_address|default:"—" }}

Emergency Contact: {{ employee.emergency_contact|default:"—" }}

{% if custom_values %}

Additional / Custom Fields

Company-configured employee information
{% for item in custom_values %}

{{ item.definition.label }}: {{ item.value|default:"—" }}

{% endfor %}
{% endif %} {% if payment_account %}

Salary Payment

Sensitive destination is masked in employee screens.
{% if can_manage_payment %}Edit Payment Account{% endif %}

Method: {{ payment_account.get_payment_method_display }}

Bank / Provider: {{ payment_account.bank_name|default:payment_account.wallet_provider|default:"—" }}

Destination: {{ payment_account.masked_destination }}

Active: {{ payment_account.is_active|yesno:"Yes,No" }}

{% elif can_manage_payment %}

Salary Payment

No payment destination configured.
Configure Payment Account
{% endif %} {% if can_view_docs %}

Employee Documents

Protected download; documents are not exposed as public media links.
{% if can_manage_docs %}Upload Document{% endif %}
{% for doc in documents %}{% empty %}{% endfor %}
TypeTitleExpiresAction
{{ doc.document_type }}{{ doc.title }}{{ doc.expires_on|default:"—" }}Download
No employee documents.
{% endif %} {% endblock %}