{% 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 }}


Description

{% if instance.weekly_workshift %}
Recurring Workshift
{{ instance.weekly_workshift.display_time }}
{% endif %}
Workshift Pool
{{ instance.pool.title }}
Date
{{ instance.date }}
Worth
{{ instance.hours }} hour{{ instance.hours|pluralize }}
{% if interact_forms %}
Action
{% for form in interact_forms %} {% csrf_token %} {{ form }} {% endfor %} {{ note_form|bootstrap }}
{% endif %} {% if edit_hours_form %}
Edit Credited Hours
{% csrf_token %} {{ edit_hours_form|bootstrap }}
{% endif %} {% if instance.workshifter %}
Assignee
{{ instance.workshifter.user.get_full_name }}
{% elif instance.liable %}
Event
{{ instance.liable.user.get_full_name }} signed out less than {{ instance.pool.sign_out_cutoff }} hour{{ instance.pool.sign_out_cutoff|pluralize }} before the beginning of this shift and is still expected to complete the shift if it is not filled by another person.
{% endif %} {% if instance.weekly_workshift %}
Quick Tips
{{ instance.weekly_workshift.workshift_type.quick_tips }} 
{% endif %}
Description
{{ instance.description|safe }}
{% if instance.addendum %}{{ instance.addendum|safe }}{% endif %}
{% if instance.logs.all %}

Logs

{% for log in instance.logs.all %} {% endfor %}
Time Entry Note
{{ log.entry_time }} {% if log.person %} {{ log.person.user.get_full_name }} {% else %} Farnsworth automatically {% endif %} {% if log.entry_type == 'A' %} was assigned to this shift. {% elif log.entry_type == 'B' %} marked this shift as blown. {% elif log.entry_type == 'I' %} signed into this shift. {% elif log.entry_type == 'O' %} signed out of this shift. {% elif log.entry_type == 'V' %} verified that this shift was completed. {% elif log.entry_type == 'M' %} changed the hours credited by this shift to {{ log.hours }} hour{{ log.hours|pluralize}}. {% endif %} {% if log.note %}{{ log.note }}{% endif %}
{% endif %}
{% endblock %} {% block w_endscripts %} {% endblock %}