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

You can add trainee groups in bulk to lessons, this is useful if you have a regular cohort of trainees taking a particular course.

Groups act as one-time selection tools, once the group has been added to a session later changes to the group will not be reflected in the session.

{% csrf_token %}

New Group

{% if tgs %} {% for group in tgs %} {% endfor %}
Group Members
{{ group.uid }} {{ group.name }} {{ group.trainees_list_with_links|safe }}
{% else %}

No Groups

{% endif %}
{% endblock %}