| Remarks: {{ employee.remarks }} |
Basic Salary: {{ employee.basic_salary }} |
| Position: {{ employee.position }} |
Monthly Salary: {{ employee.monthly_salary }} |
| Surname: {{ employee.last_name }} |
First Name: {{ employee.first_name }} |
Middle Name: {{ employee.middle_name }} |
| Gender: {% if employee.gender == 'M' %} Male{% else %} Female{% endif%} |
Civil Status: {% if employee.civil_status == 'S' %}Single
{% elif employee.civil_status == 'M' %}Married
{% else %}Widowed
{% endif%} |
Birth Date: {{ employee.birth_date }} |
| Address: {{ employee.permanent_address }} |
| Contact #: {{ employee.contact_number }} |
Email: {{ employee.email }} |
| SSS: {{ employee.social_security }} |
Philhealth: {{ employee.philhealth }} |
Pagibig: {{ employee.pagibig }} |
{% for contract in employee.employmentstatus_set.all %}
{% if forloop.first %}
| Date Hired: {{ contract.date_started }} |
{% endif %}
{% endfor %}
TIN: {{ employee.tin }} |