{% extends "w_base.html" %} {% load static from staticfiles %} {% load request_tags %} {% load bootstrap %} {% load workshift_tags %} {% block w_content %}

Manage Workshifts


{% if pools %}
{% for pool in pools %} {% endfor %}
Workshift Pool Managers Hours
{{ 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 }}
{% endif %} {% if workshifters %}
{% for pool in pools %} {% endfor %} {% for workshifter, pool_hours in workshifters %} {% for hours in pool_hours %} {% endfor %} {% endfor %}
First Name Last Name E-mail{{ pool.title }}
{{ workshifter.user.first_name }} {{ workshifter.user.last_name }} {{ workshifter.user.email }}{% if 0 > hours.standing %}{% else %}{% endif %}{{ hours.standing }}
{% endif %} {% if semester_form %}
{% csrf_token %} {{ semester_form|bootstrap }}
{% endif %}
{% endblock %} {% block w_endscripts %} {% endblock %}