{% extends "base.html" %} {% block title %}Employee Contract List{% endblock %} {% block content %}
| 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' }} |
|