{% extends "admin/base.html" %} {% block content %}
{% if teacher.username|length > 0 %} {{ teacher.username[0]|upper }} {% else %} {% endif %}

Edit Teacher Profile

{{ teacher.email }}

Teacher Statistics

Students Assigned
{{ teacher.students.count() }}
Topics Created
{{ teacher.topics.count() }}
Account Status
Active
Account Created
{{ teacher.created_at.strftime('%B %d, %Y') }}

Edit Teacher Information

{{ form.csrf_token }}
{{ form.username(class="input input-bordered w-full focus:ring-2 focus:ring-primary focus:border-primary", placeholder="Enter username") }} {% if form.username.errors %}
{% for error in form.username.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.email(class="input input-bordered w-full focus:ring-2 focus:ring-primary focus:border-primary", placeholder="Email address") }} {% if form.email.errors %}
{% for error in form.email.errors %}

{{ error }}

{% endfor %}
{% endif %}

Change Password (Optional)

Leave the password fields blank if you don't want to change the password.
{{ form.password(class="input input-bordered w-full focus:ring-2 focus:ring-primary focus:border-primary", placeholder="New password") }} {% if form.password.errors %}
{% for error in form.password.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.confirm_password(class="input input-bordered w-full focus:ring-2 focus:ring-primary focus:border-primary", placeholder="Confirm password") }} {% if form.confirm_password.errors %}
{% for error in form.confirm_password.errors %}

{{ error }}

{% endfor %}
{% endif %}
Cancel
{% if teacher.students.count() == 0 and teacher.topics.count() == 0 %}

Danger Zone

Delete Teacher Account

Once you delete a teacher account, there is no going back. Please be certain.

{% endif %}
{% endblock %}