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

Delete Session

{% csrf_token %}

Are you sure you want to delete the training session {{ object.uid }} at {{ object.when }} ({{ object.where }})?

{% if pls %}

If you go ahead with this you'll eradicate the record of the following {{ pls.count }} lessons as they're linked to this session.

{% for pl in pls %} {% endfor %}
Trainee Lesson Instructor Completed?
{{ pl.uid }} {{ pl.trainee.get_full_name }} {{ pl.lesson }} {{ pl.instructor.get_full_name }} {{ pl.completed }}

Trainees will also loose any feedback given to them on the database, instructors will loose access to any notes made about these lessons. Honestly if any of these lessons have taken place you shouldn't be deleting the records about them. It's kinda the point of having this database.

So are you sure?

{% endif %}
{% endblock %}