{% extends 'common/base.html' %} {% block title %} Employee List {% endblock %} {% block content %}

Employee List Add Employee

{% for employee in employees %} {% empty %} {% endfor %}
# Photo Emp ID Full Name Email Phone Department Status Action
{{ forloop.counter }} {% if employee.photo %} {% else %} N/A {% endif %} {{ employee.employee_id }} {{ employee.full_name }} {{ employee.email }} {{ employee.phone }} {{ employee.department.name }} {% if employee.is_active %} Active {% else %} Inactive {% endif %}
No employee found.
{% endblock %}