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

{{ page_name }}


{% endif %} {% if regular_shifts %}

Regular Shifts

{% for shift in regular_shifts %} {% endfor %}
Title Time Hours
{{ shift.workshift_type.title }} {% if shift.week_long %} Week long {% else %} {{ shift.get_day_display }} {% endif %} {{ shift.start_time }} {% if shift.start_time and shift.end_time %} - {% endif %} {{ shift.end_time }} {{ shift.hours }} hour{{ shift.hours|pluralize }}
{% endif %} {% if assigned_instances %}

Assigned Singular Workshifts

{% for instance in assigned_instances %} {% endfor %}
Pool Title Date Start End
{{ instance.pool }} {{ instance.title }} {{ instance.date }} {% if instance.start_time %}{{ instance.start_time }}{% endif %} {% if instance.end_time %}{{ instance.end_time }}{% endif %}
{% endif %} {% if past_shifts %}

Past Shifts

{% for shift in past_shifts %} {% endfor %}
Title Date Hours Status
{{ shift.title }} {{ shift.date }} {{ shift.hours }} {% if shift.blown %}BLOWN{% elif shift.verifier %}- Verified by {{ shift.verifier.user.get_full_name }}{% endif %}
{% endif %} {% if profile.pool_hours.all %}

Workshift Requirements

{% if first_standing %}{% endif %} {% if second_standing %}{% endif %} {% if third_standing %}{% endif %} {% for pool_hours in profile.pool_hours.all %} {% if pool_hours.first_date_standing %} {% endif %} {% if pool_hours.second_date_standing %} {% endif %} {% if pool_hours.third_date_standing %} {% endif %} {% endfor %}
Title Hours Current StandingFirst Fine Date StandingSecond Fine Date StandingThird Fine Date Standing
{{ pool_hours.pool.title }} {{ pool_hours.show_hours }} {% if 0 > pool_hours.standing %}{% else %}{% endif %}{{ pool_hours.standing }}First Fine Date Standing: {{ pool_hours.first_date_standing }}Second Fine Date Standing: {{ pool_hours.second_date_standing }}Third Fine Date Standing: {{ pool_hours.third_date_standing }}
{% endif %} {% if profile.note %}

Profile notes

{{ profile.note|safe }}

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