{% extends 'base_rigs.html' %} {% load user_has_qualification from tags %} {% load percentage_complete from tags %} {% load user_level_if_present from tags %} {% block content %}
Add New Training Record

Training Levels

Technical Assistant is conferred automatically when the item requirements are met. Technician status is also automatic, but notification of status should be made at the next general meeting, at which point 'approval' should be granted on the system. Supervisor status is not automatic and until signed off at a general meeting, does not count.Correct as of 7th July 2021, check the Training Policy.

{% for level in levels %}

{{ level }}

{{ level.description|truncatewords:30 }}

{% percentage_complete level object as completion %}
{{completion}}% complete
Training Started Training Complete Passed Out
    {% for req in level.started_requirements %}
  • {{ req.item }} {% user_has_qualification object req.item 0 %}
  • {% endfor %}
    {% for req in level.complete_requirements %}
  • {{ req.item }} {% user_has_qualification object req.item 1 %}
  • {% endfor %}
    {% for req in level.passed_out_requirements %}
  • {{ req.item }} {% user_has_qualification object req.item 2 %}
  • {% endfor %}
{% endfor %}

Training Items


Key: Training Started Training Complete Passed Out

{% 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 %}