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

Manage Staffs

Total Staff: {{ staffs|length }}
{% for staff in staffs %}
{% if staff.is_academic_staff %} Teacher {% elif staff.is_administrator_staff %} Administrator {% elif staff.is_support_staff %} Support {% else %} Staff {% endif %}

{{ staff }}

Dept: {{ staff.department|default:"Not specified" }}
{% if staff.staff_photo %} {% else %} {% endif %}
  • Phone
    {{ staff.contacts|default:"Phone not specified" }}
  • Email
    {{ staff.email|default:"Email not specified" }}
{% endfor %}
{% endblock content%}