{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Employee Report {% endblock title %} {% load widget_tweaks %} {% block Style %} {% endblock Style %} {% block MainContent %}

New Employee Report

{% if request.user.is_superuser == True %} {% include 'report_app/new_employee_report/super_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %} {% include 'report_app/new_employee_report/mother_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %} {% include 'report_app/new_employee_report/sister_admin_forms.html' %} {% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular' %} {% include 'report_app/new_employee_report/branch_admin_forms.html' %} {% endif %}
{{employee_list.name}} {% if employee_list %}

{{ sister_organization }}

{{ branch }}
{{ branch.address_details }}

New Employee Report {% if department %}(Department : {{department}}) {% endif %} {% if designation %} (Designation : {{designation}}) {% endif %} {% if month %} {{month}}  -  {{year}} {% endif %}

{% for report in employee_list %} {% endfor %}
SL Code Employee Name Department Designation Status Grade Gross Salary gender Joining Date
{{forloop.counter}} {%if report.employee.employee_code %}{{report.employee.employee_code}} {% else %} {{report.employee.auto_employee_code}} {% endif %} {{report.employee.name_en}} {{report.employee.department}} {{report.employee.designation}} {{report.employee.emplyment_status}} {{report.employee.grade}} {{report.employee.gross_salary}} {{report.employee.gender}} {{report.employee.joining_date}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}