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

{{ psdc.sdc.title }}

This skill development course is planned for {{ psdc.datetime }}

{{ psdc.notes|linebreaks }}

{% csrf_token %}

Trainees

{% if psdc.trainees %}

{{ psdc.trainees.count }} people attended this course.

{% for trainee in psdc.trainees.all %} {% endfor %}
Name Completed
{{ trainee.get_full_name }}

Checked indicates that the trainee attended the course and passed any assessment, they will immediately have this SDC show up on their profile as attained.

Unchecked indicates that the trainee was a no-show or did not pass an assessment. They will not have the SDC show up on their profile.

Completion of an SDC happens once, after the SDC is completed it will be archived and those who did not complete will have their names scratched off the list.

{% else %}

No trainees are attended this course.

{% endif %}
{% if is_training %}
{% if not psdc.completed %} Cancel{% endif %}
{% endif %}
{% endblock %}