{%include "header.html"%} {% load custom_filters %}

Filters

Student Module

{% if msg %}
{{msg}}
{% endif %}
{% for student in student_list %} {% endfor %}
SR. No. Name Email mobile Whatsapp Number batches added date Action
{{ forloop.counter }} {{ student.first_name }} {{ student.last_name }} {{ student.email }} {{ student.mobile }} {{ student.whatsapp_number }}
{% with index=forloop.counter0 %}

{{ batches|default_if_none:"N/A"|get_item:index }}

{% endwith %}
{{ student.created_at }} Assign Batch

{%include "sidebar.html"%}
{%include "footer.html"%}