{% extends "base.html" %} {% load static %} {% block Style %} {% endblock Style %} {% block MainContent %}

Movement Approvals

{% csrf_token %} {{form.action}}
{% if movement_pending %}
{% for item in movement_pending %} {% if item.status == 'Pending'%} {% elif item.status == 'Rejected'%} {% elif item.status == 'Approved'%} {% endif %} {% endfor %}
SL Employee Name Out Time In time Destination Reason Approved By Status Action
{{ forloop.counter }} {{item.employee.name_en}} {{item.outtime}} {{item.intime}} {{item.destination}} {{item.reason}} {{item.approved_by}} {{ item.status }} {{ item.status }} {{ item.status }}
    {%if item.status == 'Pending'%}
  • {%endif%} {%if item.status == 'Approved'%}
  • {%endif%} {%if item.status == 'Rejected'%}
  • {%endif%}
{% else %}
SL Employee Name Out Time In time Destination Reason Status Action
No Data Found
{% endif %} {% endblock MainContent%} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}