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

Filters

Student Module

{% if msg %}
{{msg}}
{% endif %}
{% for student in student_list %} {% endfor %}
SR. No. Name Name on document Email mobile Whatsapp Number Verification number(Aadhar|DL|Voter) batches Courses added date Action
{{ forloop.counter }} {{ student.first_name }} {{ student.last_name }} {{ student.aadhar_name }} {{ student.email }} {{ student.mobile }} {{ student.whatsapp_number }} {{ student.aadhar_number }} | {{ student.dl_number }} | {{ student.voter_number }} {% if student.batches %} {% for batch in student.batches %} {{ batch }} {% endfor %} {% else %} - {% endif %} {% if student.courses %} {% for course in student.courses %} {{ course }} {% endfor %} {% else %} - {% endif %} {{ student.created_at }} Assign Batch

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