{% extends "cms/admin_home.html" %}
{% load danceschool_tags thumbnail i18n %}
{% block content %}
{% trans "Active Instructors" %}
{% trans "Email all active instructors" %}
{% trans "Photo" %} | {% trans "Name" %} | {% trans "Private Email" %} | {% trans "Public Email" %} | {% trans "Phone" %} | {% trans "Available for Privates" %} |
{% if perms.core.view_other_instructor_stats %}
{% trans "Instructor Stats/Payments" %} |
{% endif %}
{% for teacher in staffmember_list %}
{% if teacher.status == 'R' %}
 |
{{ teacher.firstName }} {{ teacher.lastName }} |
{{teacher.privateEmail}} |
{{teacher.publicEmail}} |
{{ teacher.phone }} |
{{ teacher.availableForPrivates|yesno }} |
{% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %}
|
{% endif %}{% endif %}
{% endif %}
{% endfor %}
{% trans "Assistant Instructors and Instructors In Training" %}
{% trans "Photo" %} | {% trans "Name" %} | {% trans "Private Email" %} | {% trans "Public Email" %} | {% trans "Phone" %} | {% trans "Available for Privates" %} |
{% if perms.core.view_other_instructor_stats %}
{% trans "Instructor Stats/Payments" %} |
{% endif %}
{% for teacher in staffmember_list %}
{% if teacher.status == 'A' or teacher.status == 'T' %}
 |
{{ teacher.firstName }} {{ teacher.lastName }} |
{{teacher.privateEmail}} |
{{teacher.publicEmail}} |
{{ teacher.phone }} |
{{ teacher.availableForPrivates|yesno }} |
{% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %}
|
{% endif %}{% endif %}
{% endif %}
{% endfor %}
{% trans "Guest Instructors" %}
{% trans "Photo" %} | {% trans "Name" %} | {% trans "Private Email" %} | {% trans "Public Email" %} | {% trans "Phone" %} | {% trans "Available for Privates" %} |
{% if perms.core.view_other_instructor_stats %}
{% trans "Instructor Stats/Payments" %} |
{% endif %}
{% for teacher in staffmember_list %}
{% if teacher.status == 'G' %}
 |
{{ teacher.firstName }} {{ teacher.lastName }} |
{{teacher.privateEmail}} |
{{teacher.publicEmail}} |
{{ teacher.phone }} |
{{ teacher.availableForPrivates|yesno }} |
{% if perms.core.view_other_instructor_stats %}{% if teacher.firstName != 'TBD' %}
|
{% endif %}{% endif %}
{% endif %}
{% endfor %}
{% endblock %}