{% extends 'training_template.html' %} {% load staticfiles %} {% block training_content %}

Complete {{ session.uid }}

You are completing the session which took place on {{ session.when }} at {{ session.where }}.

{{ performed_lessons_formset.management_form }} {% for form in performed_lessons_formset %} {% empty %}
Trainee Lesson Instructor Completed? Partial Public Notes Private Notes
{{ form.id }}{{ form.instance.trainee.get_full_name }} {{ form.instance.lesson }} {{ form.instance.instructor.get_full_name }} {{ form.completed }} {{ form.partially_completed }} {{ form.public_notes }} {{ form.private_notes }}

No Trainees Added Yet

{% endfor %}
{% csrf_token %}

Completed?

Checked indicates that the trainee attended and completed the lesson to the relevant skill performance standard, they will immediately have this lesson show up on their profile as completed.

Unchecked indicates that the trainee was a no-show or did not finish the lesson. If the lesson is not marked as partially completed it will be removed.

Partial?

Check partial if the lesson was partially completed, make a note as to how much of the lesson was completed. This will show up when the pool sheet is generated for the re-planned lesson.

Notes

Public notes are shown to the trainee and all instructors and database officers with the training permission. Private notes are not shown to the trainee.

Saving and Completing

You can save the progress of this form before 'completing the session'. After you complete the session you may not come back to this page and edit it later.

{% if is_training %}
{% endif %}
{% endblock %}