{% 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 %}

{% for report in employee_list %} {% endfor %}
SL Card No Joining Name Name Bangla Father Name Father Bangla Mother Name Mother Bangla Section Department Grade Present Address permanent Address Gross DOB Gender Religion Blood group NID Contact NO Bank Ac No Line No 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.designation}} {{report.employee.department}} {{report.employee.grade}} {{report.employee.present_area_name}} {{report.employee.permanent_area_name}} {{report.employee.gross_salary}} {{report.employee.birth_date}} {{report.employee.gender}} {{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%}