{% extends "w_base.html" %} {% load static from staticfiles %} {% load request_tags %} {% load bootstrap %} {% load workshift_tags %} {% block w_content %}
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.enty_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 %} |