{% extends 'base.html' %} {% load static %} {% block title %}Employees - HR - Optinet Global Links{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Employees

Manage employee information and records

{% include 'hr/hr_nav.html' %}
All Employees
Add Employee
{% if employees %}
{% for employee in employees %} {% endfor %}
Employee Details Contact Info Department Employment Dates Status Actions
{{ employee.full_name }}
{{ employee.employee_id }}
{{ employee.get_employment_type_display }}
{{ employee.email }}
{{ employee.phone }}
{{ employee.department.name|default:"N/A" }}
{{ employee.job_title }}
{{ employee.hire_date|date:"M d, Y" }}
{% if employee.probation_end_date %} Probation ends: {{ employee.probation_end_date|date:"M d, Y" }} {% endif %}
{{ employee.get_employment_status_display }} {% if employee.termination_date %}
Terminated: {{ employee.termination_date|date:"M d, Y" }} {% endif %}
{% else %}
No employees found

Add your first employee to get started.

Add Employee
{% endif %}
{% endblock content %} {% block extra_js %} {% endblock %}