{% 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 css %} {% endblock %} {% block preload_js %} {% endblock %} {% block js %} {% endblock %} {% block content %}
Add New Training Record View Detailed Record

Training Levels

{% for qual in completed_levels %} {% if forloop.first %}
{% endif %}

{{ qual }}

{% if forloop.last %}
{%endif%} {% empty %} No qualifications in any levels yet...did someone forget to fill out the paperwork? {% endfor %}
{% for level in started_levels %} {% percentage_complete level object as completion %}

{{ level }}

{{ level.description|truncatewords:30 }}

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

Training Items

{% for category in categories %} {% if forloop.first or forloop.counter|divisibleby:3 %}
{% endif %}

{{ category }}

{% for q in object.qualifications_obtained.all %} {% if q.item.category == category %}
  • {{q.item}} ({{q.date}})
  • {% endif %} {% empty %}
  • None yet...
  • {% endfor %}
    {% if forloop.counter|add:"1"|divisibleby:3 %}
    {% endif %} {% endfor %}
    {% include 'partials/last_edited.html' with target="trainee_history" %}
    {% endblock %}