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

{{ page_name }}


{% if not workshifter_tuples %} No workshifters added yet. {% else %} {% for pool in pools %} {% endfor %} {% for workshifter, pool_hours in workshifter_tuples %} {% for hours in pool_hours %} {% endfor %} {% endfor %}
First Name Last Name {{ pool.title }}
{{ workshifter.user.first_name }} {{ workshifter.user.last_name }} {% if 0 > hours.standing %} {{ hours.standing }} {% else %} {{ hours.standing }} {% endif %}
{% endif %}
{% endblock %} {% block w_endscripts %} {% endblock %}