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

Employee Report

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

{{ sister_organization }}

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

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

{% comment %} {% endcomment %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% for report in employee_list %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% endfor %}
SL Card No Joining Date Employee NameName Bangla Father Name Father Bangla Mother Name Mother Bangla Department Designation Status GradePresent Address permanent Address Gross Salary Gender Date Of BirthReligion Blood group NID Contact NO Bank Ac NoWork Place Remarks
{{forloop.counter}} {%if report.employee.employee_code %}{{report.employee.employee_code}} {% else %} {{report.employee.auto_employee_code}} {% endif %} {{report.employee.joining_date}} {{report.employee.name_en}}{{report.employee.name_bn}} {{report.employee.father_name_en}} {{report.employee.father_name_bn}} {{report.employee.mother_name_en}} {{report.employee.mother_name_bn}}{{report.employee.department}} {{report.employee.designation}} {{report.employee.emplyment_status}} {{report.employee.grade}}{{report.employee.present_area_name}} {{report.employee.permanent_area_name}}{{report.employee.gross_salary}} {{report.employee.gender}} {{report.employee.birth_date}}{{report.employee.blood_group}} {{report.employee.nid}} {{report.employee.mobile}} {{report.employee.bank_ac}}{{report.employee.working_place.working_place}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}