{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if employee_list %}

Employees

{% if request.user.user_type == 'Branch' %}
  • {% if 'employee_add' in user_permission_list %} {% endif %}
{% endif %} {% if request.user.user_type == 'Regular' %}
  • {% if 'employee_add' in user_permission_list %} {% endif %}
{% endif %}
{% if employee_list %}
{% for employee in employee_list %} {% if employee.employee_code %} {% else %} {% endif %} {% endfor %}
SL No Name Employee Code Department Designation Action
{{forloop.counter}} {{ employee.name_en }}{{ employee.employee_code }}{{ employee.auto_employee_code }}{{ employee.department.name_en }} {{ employee.designation.name_en }}
{% if employee_list.has_other_pages %}
{% endif %}
{% endif %}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}