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

Teachers

{% include 'snippets/messages.html' %} {% include 'snippets/filter_form.html' %}
{% if request.user.is_superuser %} {% endif %} {% for teacher in filter.qs %} {% if request.user.is_superuser %} {% endif %} {% empty %} {% endfor %}
# ID No. Full Name Email Mob No. Address/city Last login Action
{{ forloop.counter }}. {{ teacher.username }} {{ teacher.get_full_name }} {{ teacher.email }} {{ teacher.phone }} {{ teacher.address }} {{ teacher.last_login }}
No teacher(s). {% if request.user.is_superuser %} Add teacher Now. {% endif %}
{% endblock content %}