{% extends "cms/admin_home.html" %} {% load danceschool_tags thumbnail i18n %} {% block content %}

{% trans "Active Instructors" %}

{% trans "Email all active instructors" %}

{% if perms.core.view_other_instructor_stats %} {% endif %} {% for teacher in staffmember_list %} {% if teacher.status == 'R' %} {% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %} {% endif %}{% endif %} {% endif %} {% endfor %}
{% trans "Photo" %}{% trans "Name" %}{% trans "Private Email" %}{% trans "Public Email" %}{% trans "Phone" %}{% trans "Available for Privates" %}{% trans "Instructor Stats/Payments" %}
{{ teacher.firstName }} {{ teacher.lastName }} {{teacher.privateEmail}} {{teacher.publicEmail}} {{ teacher.phone }} {{ teacher.availableForPrivates|yesno }}

{% trans "Assistant Instructors and Instructors In Training" %}

{% if perms.core.view_other_instructor_stats %} {% endif %} {% for teacher in staffmember_list %} {% if teacher.status == 'A' or teacher.status == 'T' %} {% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %} {% endif %}{% endif %} {% endif %} {% endfor %}
{% trans "Photo" %}{% trans "Name" %}{% trans "Private Email" %}{% trans "Public Email" %}{% trans "Phone" %}{% trans "Available for Privates" %}{% trans "Instructor Stats" %}
{{ teacher.firstName }} {{ teacher.lastName }} {{teacher.privateEmail}} {{teacher.publicEmail}} {{ teacher.phone }} {{ teacher.availableForPrivates|yesno }}

{% trans "Guest Instructors" %}

{% if perms.core.view_other_instructor_stats %} {% endif %} {% for teacher in staffmember_list %} {% if teacher.status == 'G' %} {% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %} {% endif %}{% endif %} {% endif %} {% endfor %}
{% trans "Photo" %}{% trans "Name" %}{% trans "Private Email" %}{% trans "Public Email" %}{% trans "Phone" %}{% trans "Available for Privates" %}{% trans "Instructor Stats" %}
{{ teacher.firstName }} {{ teacher.lastName }} {{teacher.privateEmail}} {{teacher.publicEmail}} {{ teacher.phone }} {{ teacher.availableForPrivates|yesno }}
{% endblock %}