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

{{ page_name }}

{% csrf_token %} {% if edit_form %} {{ edit_form|bootstrap }} {% endif %} {% if shifts_formset %} {% for form in shifts_formset.forms %} {{ form.id }} {% endfor %}
Pool Day Count Hours Start Time End Time
{{ form.pool|bootstrap }} {{ form.day|bootstrap }} {{ form.count|bootstrap }} {{ form.hours|bootstrap }} {{ form.start_time|bootstrap }} {{ form.end_time|bootstrap }}
{{ shifts_formset.management_form }}

Note: All open instances of this workshift will be remove and replaced if you save your edits. This means that members who have signed into or out of their shifts will need to repeat that action.

{% endif %}
{% endblock %} {% block w_endscripts %} {% endblock %}