{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block extrahead %} {% load static %} {% endblock %} {% block title %}Training{% endblock %} {% block content %}

Training

Use this form to charge users for training sessions.

You can add participants to a training session by clicking the 'Add another participant' link. Remove a participant or blank row by clicking the circled X on that row.

When a user has successfully completed a training session you have the option to check the "Qualify" box, which qualifies the user for that tool.


{% csrf_token %} {# Rows are inserted here upon load & when "Add another participant" is clicked. #} {% include 'training/training_entry.html' with entry_number=0 %}
Add another participant
{# Note: onclick need to stay blank so it will trigger the onsumbit of this form #} {% button id="record_training_sessions" type="save" value="Record training sessions" onclick="" %}
{% endblock %}