{% extends 'base/base.html' %} {% load static %} {% block content %} {% include 'partials/_alerts.html' %}
Teachers List
{% for teacher in teachers %} {% endfor %}
SL Name Email Department Subject Joining Date Action
{{ forloop.counter }} {{ teacher.name }} {{ teacher.email }} {{ teacher.dept_type }} {{ teacher.sub_type }} {{ teacher.joining_date }}
{% if teachers.has_other_pages %} {% endif %}
{% endblock %}