{% if pools %}
Workshift Pool |
Managers |
Hours |
{% for pool in pools %}
{{ pool.title }} |
{% if pool.managers.count %}
{% for pos in pool.managers.all %}
{% if not forloop.first %}, {% endif %}
{{ pos.title }}
{% if pos.incumbent %}
({{ pos.incumbent }})
{% else %}
(No incumbent)
{% endif %}
{% endfor %}
{% endif %}
|
{{ pool.show_hours }} |
{% endfor %}
{% endif %}
{% if workshifters %}
First Name |
Last Name |
E-mail |
{% for pool in pools %}
{{ pool.title }} |
{% endfor %}
{% for workshifter, pool_hours in workshifters %}
{{ workshifter.user.first_name }} |
{{ workshifter.user.last_name }} |
{{ workshifter.user.email }} |
{% for hours in pool_hours %}
{% if 0 > hours.standing %}{% else %}{% endif %}{{ hours.standing }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if semester_form %}