{%include "header.html"%}

Course Students

{% for student in student_list %} {% endfor %}
SR. No. Name Email mobile Whatsapp Access Courses added date
{{ forloop.counter }} {{student.student.first_name }} {{ student.student.last_name }} {{ student.student.email }} {{ student.student.mobile }} {{ student.student.whatsapp_number }} {{ student.display_access }} {% if student.courses %} {% for course in student.courses %} {{ course }} {% endfor %} {% else %} - {% endif %} {{ student.created_at }}
{%include "sidebar.html"%}
{%include "footer.html"%}