{% extends "base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Transfer {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if request.user.is_superuser == True %}

Transfer

{% csrf_token %}
{{form.mother_organization|as_crispy_field }}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Mother_Organization_admin' %}

Transfer

{% csrf_token %}
{{form.sister_organization|as_crispy_field }}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Sister_Organization_admin' %}

Transfer

{% csrf_token %}
{{form.branch|as_crispy_field }}
{% endif %} {% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular'%}
{% endif %}

Transfer

{% if request.user.user_type == 'Branch' or request.user.user_type == 'Regular'%} {% if 'department_add' in user_permission_list %} {% endif %} {% endif %}
{% if transfer_list %}
{% comment %} {% endcomment %}
{% comment %} {% endcomment %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% for transfer in transfer_list %} {% endfor %}
SL No Employee New branch Old branch New Work Place Old Work PlaceNew Designation Old DesignationNew Gross Salary old Gross SalaryAction
{{forloop.counter}} {{ transfer.employee }} {{ transfer.employee.branch}} {{ transfer.branch}} {{ transfer.new_working_place }} {{ transfer.old_working_place }}
{% if transfer_list.has_other_pages %} {% endif %}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}