{% include "header.html" %} {% load custom_filters %} {# Moved this to the top #}

Batch Details

Batch Name: {{ batch.batch_name }}

Exam Category: {{ batch.exam_category.exam_category_name }}

Status: {{ batch.status }}

Merged Batches: {% if batch.merged_batches.all %}
{% for merged_batch in batch.merged_batches.all %} {{ merged_batch.batch_name }} {% endfor %}
{% else %} No merged batches {% endif %}
{% for student in student_list %} {% empty %} {% endfor %}
SR. No. Name Email Mobile WhatsApp Added Date
{{ forloop.counter }} {{ student.student.first_name }} {{ student.student.last_name }} {{ student.student.email }} {{ student.student.mobile }} {{ student.student.whatsapp_number }} {{ student.student.created_at }}
No students found.
{% csrf_token %} {% if exam_syllabus %} {% for syllabus in exam_syllabus %} {% endfor %} {% else %} {% endif %}
# Exam Category Section Sub Section Topic No. of Lectures
{{ forloop.counter }} {{ syllabus.exam_category.exam_category_name }} {{ syllabus.section.section_name }} {{ syllabus.sub_section.sub_section_name }} {{ syllabus.topic.topic_name }}
No syllabus found for this batch.

Time Slot Available Details

{% for day, slots in time_slots_list %}
{% for slot in slots %} {% empty %} {% endfor %}
Start Time End Time Action
{{ slot.start_time }} {{ slot.end_time }}
No time slots available.
{% endfor %}
{% csrf_token %} {% for row in monthly_rows %} {% empty %} {% endfor %}
SR. No. Month No. of Lectures
{{ forloop.counter }} {{ row.month }}
No months found.
{% include "sidebar.html" %}
{% include "footer.html" %}