{% extends 'base.html' %} {% block title %}{{ title }} | Learning management system{% endblock title %} {% block content %} {% if request.user.is_superuser %}
Add Student Download pdf
{% endif %}
Students


{% include 'snippets/messages.html' %} {% include 'snippets/filter_form.html' %}
{% if request.user.is_superuser %} {% endif %} {% for student in filter.qs %} {% if request.user.is_superuser %} {% endif %} {% empty %} {% endfor %}
# ID No. Full Name Email Program Action
{{ forloop.counter }}. {{ student.student.username }} {{ student.student.get_full_name }} {{ student.student.email }} {{ student.program }}
No Student. {% if request.user.is_superuser %} Add Student Now. {% endif %}
{% endblock content %}