{% extends 'partials/base.html' %} {% load static %} {% block content %}
{% block title %} {% include 'partials/title.html' with title='Teacher List' text='Dashboard' textone='Peoples' texttwo='Teacher List' %} {% endblock %}

Teachers List

{% for record in teacher_list %} {% endfor %}
ID Name Class Subject Email Phone Date of Join Status Action
{{ record.ID }} {{ record.Class }} {{ record.Subject }} {{ record.Email }} {{ record.Phone }} {{ record.DateofJoin }} {{ record.Status }}
{% endblock %}