{% extends 'generic/base.html' %} {% load crispy_forms_tags %} {% block css %} {% endblock %} {% block content %} All, {% for i in "123456"|make_list %} ST{{i}}{% if not forloop.last %}, {% endif %} {% endfor %} (Add trainee) (Bulk create) (Bulk update)

{% if grade %} {{grade}} {% endif %}Trainees

{% for trainee in trainees %} {% endfor %}
Name Grade Email Supervisor Edit Bulk Edit
Toggle All
{{trainee.user.first_name}} {{trainee.user.last_name}} {{trainee.grade}}{% if not trainee.grade %} add {% endif %} {{trainee.user.email}} {{trainee.supervisor}} {% if not trainee.supervisor %} add {% else %} {% endif %} User/Profile
Count: {{trainees|length}}

Bulk edit options

These actions will act on all the selected trainees. Refresh the page to cancel / clear.
{% endblock %}