{% extends 'school/base_school.html' %} {% block title %}Leave Management | STD Lab{% endblock %} {% block content %}

Student Leave Management

Search for a student to record leaves or view their history.

{% if selected_student %}

New Leave Entry

{% if selected_student.photo %} {% else %}
{% endif %}
{{ selected_student.name }}
PIN: {{ selected_student.pin }}
{% csrf_token %}

Leave History

ACTIVE LEAVES

{% for l in active_leaves %}
{{ l.leave_type }}
{{ l.start_date }} to {{ l.end_date }} ({{ l.total_days }} Days)
{% if l.end_date >= today %} DISMISS {% endif %} ACTIVE
{% empty %}

No active leaves.

{% endfor %}

DISMISSED HISTORY

{% for l in deleted_leaves %}
{{ l.leave_type }}
{{ l.start_date }} to {{ l.end_date }} ({{ l.total_days }} Days)
DISMISSED AT: {{ l.deleted_at|date:"d M, h:i A" }}
DISMISSED
{% empty %}

No dismissed history.

{% endfor %}
{% endif %}
{% endblock %}