{% extends "staff/base.html" %} {% load base_filters %} {% load pagination_tags %} {% load staff_tags %} {% load perm_tags %} {% load search_tags %} {% block title %}{% firstof MODULE_STAFF_LABEL_PLURAL 'Staff' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %} {% autopaginate staff_members 9 %} {% has_perm user staff.add_staff as can_add_staff %}

{{ SITE_GLOBAL_SITEDISPLAYNAME }} {% firstof MODULE_STAFF_LABEL_PLURAL 'Staff' %}

{% if department %}

{% trans "Department:" %} {{ department.name }}

{% endif %} {% staff_search %}
{% for staff in staff_members %} {% search_result staff %} {% empty %}

0 {% firstof MODULE_STAFF_LABEL_PLURAL 'Staff' %} {% trans "Found" %}

{% endfor %}
{% paginate %}
{% endblock %} {% block featured_staff %} {% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}