{% extends "admin/base.html" %} {% block content %}

Manage Teachers

Add, edit or remove teacher accounts in the system

Total Teachers
{{ teachers|length }}
Total Topics Created
{% set topic_count = 0 %} {% for teacher in teachers %} {% set topic_count = topic_count + teacher.topics.count() %} {% endfor %} {{ topic_count }}
Total Students Assigned
{% set student_count = 0 %} {% for teacher in teachers %} {% set student_count = student_count + teacher.students.count() %} {% endfor %} {{ student_count }}

Add New Teacher

{{ form.csrf_token }}
{{ form.username(class="input input-bordered w-full", placeholder="Enter username") }}
{{ form.email(class="input input-bordered w-full", placeholder="Email address") }}
{{ form.password(class="input input-bordered w-full", placeholder="Secure password") }}

Teacher Accounts

{% if teachers %} {% for teacher in teachers %}
{% if teacher.username|length > 0 %} {{ teacher.username[0]|upper }} {% else %} {% endif %}

{{ teacher.username }}

{{ teacher.email }}
{{ teacher.students.count() }} Students {{ teacher.topics.count() }} Topics Active
Edit {% if teacher.students.count() == 0 and teacher.topics.count() == 0 %} {% else %} {% endif %}
{% endfor %} {% else %}

No Teachers Available

Start by adding a new teacher to the system.

{% endif %}
{% endblock %}