{% extends 'base.html' %} {% block title %}View Students — StudentMS{% endblock %} {% block content %}
{% if students %}
{% for s in students %} {% endfor %}
# Student ID Full Name Gender Course Branch Year/Sem Phone Email City Actions
{{ loop.index }} {{ s.student_id }} {{ s.full_name }} {{ s.gender }} {{ s.course }} {{ s.branch }} {{ s.year_sem }} {{ s.phone }} {{ s.email }} {{ s.city }}
{% else %}

{% if q %}No students matching "{{ q }}". {% else %}No students added yet. Add one →{% endif %}

{% endif %}
{% endblock %}