{% load humanize %}
Employee ID/Code
{{ employee.code }}
Fullname
{{ employee.firstname }} {{ employee.middlename }} {{ employee.lastname }}
Gender
{{ employee.gender }}
Date of Birth
{{ employee.dob|date:'M d, Y' }}
Email
{{ employee.email }}
Contact #
{{ employee.contact }}
Address
{{ employee.address }}
Department
{{ employee.department_id }}
Position
{{ employee.position_id }}
Date Hired
{{ employee.date_hired|date:'M d, Y' }}
Salary
{{ employee.salary|intcomma }}
Status
{% if employee.status == 1 %} Active {% else %} Inactive {% endif %}