{% extends "base.html" %} {% block title %}Employee Contract List{% endblock %} {% block content %}
{{ 'Your Employees' if not is_admin else 'Total Employees (Filtered)' }}

{{ total_employees }}

All Employees
Search
{% for employee in employees %} {% endfor %}
Employee Name Position Start Date End Date Salary (USD) Contract No Actions
{{ employee.employee_name or 'N/A' }} {{ employee.position_title or 'N/A' }} {{ employee.start_date.strftime('%d %b %Y') if employee.start_date else 'N/A' }} {{ employee.end_date.strftime('%d %b %Y') if employee.end_date else 'N/A' }} ${{ '%.2f' % employee.salary_amount if employee.salary_amount is not none else '0.00' }} {{ employee.contract_no or 'N/A' }}
No employee contracts found.
{% if pagination %} {% endif %}
{% endblock %}