{% extends "base.html" %} {% load portal_extras %} {% block title %}Staff | Admin Portal{% endblock %} {% block nav_staff %}active{% endblock %} {% block content %} {% if teachers %}
{% for teacher in teachers %} {% endfor %}
Name Email 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 %}
{% if page_obj.has_other_pages %}
{% endif %}
{% else %}

No teacher accounts yet.

Teacher accounts are created via Django Admin under Accounts → Users.

{% endif %} {% endblock %}