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

Single Employee Increment Report

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

{{ branch }}

{{ branch.address_details }}

Salary Update Record

Name: {{employee_list.employee.name_en}}

ID: {{employee_list.employee.employee_code}}

Designation: {{employee_list.employee.designation}}

Previous Salary: {{employee_list.previous_gross}}      Increment: {{employee_list.increment_amount}}

Basic: {{basic}}

Worker's Signature

Month: {{month}} / {{year}}

Join_Dtae:{{employee_list.employee.joining_date}}

Effect From:

New Salary: {{employee_list.gross}}

House Rent: {{house_rent}}

Approved By

{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS%}