{% extends "w_base.html" %}
{% load static from staticfiles %}
{% load request_tags %}
{% load bootstrap %}
{% load workshift_tags %}
{% block w_content %}
{% if WORKSHIFT_MANAGER %}
{% endif %}
{% if regular_shifts %}
Regular Shifts
Title |
Time |
Hours |
{% for shift in regular_shifts %}
{{ 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 }} |
{% endfor %}
{% endif %}
{% if assigned_instances %}
Assigned Singular Workshifts
Pool |
Title |
Date |
Start |
End |
{% for instance in assigned_instances %}
{{ instance.pool }} |
{{ instance.title }} |
{{ instance.date }} |
{% if instance.start_time %}{{ instance.start_time }}{% endif %} |
{% if instance.end_time %}{{ instance.end_time }}{% endif %} |
{% endfor %}
{% endif %}
{% if past_shifts %}
Past Shifts
{% endif %}
{% if profile.pool_hours.all %}
Workshift Requirements
Title |
Hours |
Current Standing |
{% if first_standing %}First Fine Date Standing | {% endif %}
{% if second_standing %}Second Fine Date Standing | {% endif %}
{% if third_standing %}Third Fine Date Standing | {% endif %}
{% for pool_hours in profile.pool_hours.all %}
{{ pool_hours.pool.title }} |
{{ pool_hours.show_hours }} |
{% if 0 > pool_hours.standing %}{% else %}{% endif %}{{ pool_hours.standing }} |
{% if pool_hours.first_date_standing %}
First Fine Date Standing: {{ pool_hours.first_date_standing }} |
{% endif %}
{% if pool_hours.second_date_standing %}
Second Fine Date Standing: {{ pool_hours.second_date_standing }} |
{% endif %}
{% if pool_hours.third_date_standing %}
Third Fine Date Standing: {{ pool_hours.third_date_standing }} |
{% endif %}
{% endfor %}
{% endif %}
{% if profile.note %}
Profile notes
{{ profile.note|safe }}
{% endif %}
{% endblock %}
{% block w_endscripts %}
{% endblock %}