{% extends "../base.html" %} {% load crispy_forms_tags %} {% block page_title %}Staff Details{% endblock page_title %} {% block content %}

Staff Details

{% if staff.staff_photo %} Staff Photo {% else %}
{% endif %}

{{ staff }}

{{ staff.department|default:"Department not specified" }}

Academic Staff Active

Contact & Profile

  • {{ staff.address|default:"Address not specified" }}
  • {{ staff.contacts|default:"Phone not specified" }}
  • {{ staff.email|default:"Email not specified" }}
Qualification: {{ staff.qualification|default:"Not specified" }}
{% if user.staff_account.role.name == "Admin" %} {% endif %}

Assigned Classes & Subjects

Current teaching assignments for {{ staff }}.

{% if teaching_assignments %}
{% for assignment in teaching_assignments %} {% endfor %}
# Class Stream Subject
{{ forloop.counter }} {{ assignment.academic_class_stream }} {{ assignment.subject }}
{% else %} {% endif %}

Additional Information

{% if staff.qualification %}

{{ staff.qualification }}

Professional certifications and academic credentials are listed here.
{% else %}

No qualifications specified.

{% endif %}

Staff Documents

{% if staff_documents %}
    {% for document in staff_documents %}
  • {{ document.document_type }}
    View {% if user.staff_account.role.name == "Admin" %} Delete {% endif %}
  • {% endfor %}
{% else %}

No documents uploaded yet.

{% endif %}
{% if user.staff_account.role.name == "Admin" %}
Upload New Document
{% csrf_token %}
{% endif %}
{% endblock content %}