{% extends "base.html" %} {% block title %}{{ teacher.get_full_name }} | Staff{% endblock %} {% block nav_staff %}active{% endblock %} {% block content %}
Profile
{{ teacher.first_name|first|upper }}{{ teacher.last_name|first|upper }}
{{ teacher.get_full_name }}

{{ teacher.get_role_display }}

Email
{{ teacher.email }}
Phone
{{ teacher.phone|default:"—" }}
Username
{{ teacher.username }}
Joined
{{ teacher.date_joined|date:"d M Y" }}
{% if profile %}
Specialization
{{ profile.specialization|default:"—" }}
Qualification
{{ profile.qualification|default:"—" }}
{% endif %}
{% if profile and profile.bio %}
{{ profile.bio }}
{% endif %}
Assigned Programs
Edit
{% if assigned_programs %}
    {% for prog in assigned_programs %}
  • {{ prog.name }} {{ prog.get_level_display }}
    {% if prog.is_active %} Active {% else %} Inactive {% endif %}
  • {% endfor %}
{% else %}
No programs assigned yet. Assign programs.
{% endif %}
{% endblock %}