{% extends "index.html" %} {% load static %} {% load i18n %} {% block content %} {% include 'employee_nav.html' %}
{% if error_message %} {% endif %} {% if data %} {% if view_type == 'list' %} {% include 'employee_personal_info/employee_list.html' %} {% else %} {% include 'employee_personal_info/employee_card.html' %} {% endif %} {% else %} {% include "employee_personal_info/employee_empty_view.html" %} {% endif %}
{% endblock %}