{% extends "base.html" %} {% load portal_extras %} {% block title %}Staff | Admin Portal{% endblock %} {% block nav_staff %}active{% endblock %} {% block content %}
Manage teacher accounts and their program assignments
| Name | Phone | Assigned Programs | Actions | |
|---|---|---|---|---|
|
{{ teacher.first_name|first|upper }}{{ teacher.last_name|first|upper }}
{{ teacher.get_full_name }}
{{ teacher.get_role_display }}
|
{{ teacher.email }} | {{ teacher.phone|default:"—" }} | {% if teacher.teacher_profile %} {% for prog in teacher.teacher_profile.programs.all %} {{ prog.name }} {% empty %} No programs assigned {% endfor %} {% else %} No profile {% endif %} |
No teacher accounts yet.
Teacher accounts are created via Django Admin under Accounts → Users.