{% extends 'base_rigs.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 %} {{ block.super }} {% endblock %} {% block preload_js %} {{ block.super }} {% endblock %} {% block js %} {% endblock %} {% block content %}
Add New Training Record

Training Levels

{% for level in levels %}

{{ level }}

{{ level.description|truncatewords:30 }}

{% percentage_complete level object as completion %}
{{completion}}% complete
{% 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 %}
    {% endblock %}