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

Leave Audit Report

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

{{ sister_organization }}

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

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

{% for report in report_list %} {% endfor %}
SL Code Employee Name Department Designation Leaves
{{forloop.counter}} {{report.code}} {{report.name}} {{report.department}} {{report.designation}} {{report.leaves}}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}