{% extends "base.html" %} {% load static from staticfiles %} {% load widget_tweaks %} {% block extrahead %} {% endblock %} {% block content %}

Create Time Card

You are logged in as {% if user.first_name and user.last_name %} {{ user.first_name }} {{ user.last_name }} {% else %} {{ user }} {% endif %} . {% if student %} Please fill out your time card below. {% else %} Please review {{ studentName.fname }} {{ studentName.lname }}'s time card below. {% endif %}
{{ form.non_field_errors }} {% if warning %}

Warning student has already posted a time sheet for today. You may approve it here


{% endif %}
{{ form.date.errors }}
Date
Start Lunch Out Lunch In End
{{ form.time_in|add_class:"timecard-datefield" }} {{ form.time_in.errors }} {{ form.time_lunch|add_class:"timecard-datefield" }} {{ form.time_lunch.errors }} {{ form.time_lunch_return|add_class:"timecard-datefield" }} {{ form.time_lunch_return.errors }} {{ form.time_out|add_class:"timecard-datefield" }} {{ form.time_out.errors }} No Lunch
{% if student %} You {% else %} {{ studentName.fname }} {{ studentName.lname }} {% endif %} worked total hours.

{% if student %} My supervisor was: {% else %} Supervisor: {% endif %} {{ form.my_supervisor }} {{ form.my_supervisor.errors }}

{% if not form.for_pay.is_hidden %} {% if student %} I {% else %} Student {% endif %}was working over a school break (such as a holiday) and should be paid separately for these hours.
{{ form.for_pay.errors }} {% endif %} {% if student %} I {% else %} Student {% endif %} was making up a missed day.

{% if student %} My {% else %} Student's {% endif %} major accomplishment for today was...

{{ form.student_accomplishment.errors }}

Client comments, concerns, questions...

{% if student %} {% else %} {{ form.supervisor_comment.errors }}
{{ form.show_student_comments }} Allow students to see comments and performance review. {% endif %}

Daily Student Worker Performance: {{ form.performance.errors }} {{ form.performance }}

{% if approved %}

Approved by supervisor

{% endif %} {% if not student %}

Submitted by student

{% endif %}
{% if student %} {% else %} {% endif %}
{% endblock %}