{% 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 %}
{% include "workshifters_table.html" %}
{% endif %} {% if edit_semester_form %}
{% csrf_token %} {{ edit_semester_form|bootstrap }} {% if close_semester_form %} {{ close_semester_form|bootstrap }} {% endif %} {% if open_semester_form %} {{ open_semester_form|bootstrap }} {% endif %}
{% if close_semester_form %} {% endif %} {% if open_semester_form %} {% endif %}
{% endif %}
{% endblock %} {% block w_endscripts %} {% endblock %}