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

{{ page_name }}


Day
{% if shift.day %} {{ shift.get_day_display }} {% else %} Week long {% endif %}
Hours
{{ shift.hours }}
Quick Tips
{{ shift.workshift_type.quick_tips|safe }} 
Description
{{ shift.workshift_type.description|safe }}
Workshift Pool
{{ shift.pool.title }}
{% if shift.current_assignees.count %}
Assignee{{ shift.current_assignees.count|pluralize }}
{% for assignee in shift.current_assignees.all %}{% if not forloop.first %}, {% endif %}{{ assignee.get_full_name }} {% endfor %}
{% endif %}
{% if instance_tuples %} {% for instance, forms in instance_tuples %} {% endfor %} {% with id_prefix="instances" %} {% include "pager.html" %} {% endwith %}
Date Hours Workshifter Action
{{ instance.date }} {% if shift.intended_hours == shift.hours %} {{ shift.hours }} {% else %} {{ shift.intended_hours}} {{ shift.hours }} {% endif %} {% if shift.blown %} BLOWN {% elif shift.verify == 'A' %} Auto Verify {% elif shift.verifier %} {{ shift.verifier.user.get_full_name }} {% elif shift.liable %} {{ shift.liable.user.get_full_name }} {% endif %} {% for form in forms %}
{% csrf_token %} {{ form }}
{% endfor %}
{% endif %} {% endblock %} {% block w_endscripts %} {% endblock %}