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

{{ page_name }}


{% csrf_token %} {% if pools_tuples %} {% for pool_hours, form in pools_tuples %} {% endfor %}
Pool Regular Hourly Requirement Hour Adjustment
{{ pool_hours.pool.title }} {{ form.hours|bootstrap }} {{ form.hour_adjustment|bootstrap }}

Regular Hourly Requirement should be used to adjust how many hours a workshifter owes each week (i.e. Reducing the number of hours a member with a disability owes).

Hour Adjustment is meant as a fallback method to adjust a workshifter's standing. However it is usually preferrable to instead add completed hours via an instance of a workshift (i.e. "Out of town for the week, credited 5 hours"). This ensures that workshift credits are publicly available and easier to review at a future date. Positive numbers here add hours to a workshifter's standing, while negative numbers subtract hours away.

{% endif %} {% if pools_tuples and note_form %}
{% endif %} {% if note_form %} {{ note_form|bootstrap }} {% endif %}
{% endblock %}