{% extends 'base_training.html' %} {% load static %} {% load user_has_qualification from tags %} {% load percentage_complete from tags %} {% load user_level_if_present from tags %} {% load colour_from_depth from tags %} {% block js %} {% endblock %} {% block content %}
Add New Training Record

Training Levels

{% for level in levels %} {% percentage_complete level object as completion %} {% if completion > 0 %}

{{ level }}

{{ level.description|truncatewords:30 }}

{{completion}}% complete
{% endif %} {% endfor %}

Training Items

View Detailed Record
{% for category in categories %}

{{ category }}

{% for q in object.qualifications_obtained.all %} {% if q.item.category == category %}
  • {{q.item}} ({{q.date}})
  • {% endif %} {% endfor %}
    {% endfor %}
    {% include 'partials/last_edited.html' with target="trainee_history" %}
    {% endblock %}