mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-18 14:02:15 +00:00
23 lines
905 B
HTML
23 lines
905 B
HTML
{% extends 'base_training.html' %}
|
|
|
|
{% load markdown_tags %}
|
|
{% load get_supervisor from tags %}
|
|
|
|
{% block content %}
|
|
<div class="alert alert-info" role="alert">
|
|
<p>Please Note:</p>
|
|
<ul>
|
|
<li>Technical Assistant status is automatically valid when the item requirements are met.</li>
|
|
<li>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.</li>
|
|
<li>Supervisor status is <em>not automatically valid</em> and until signed off at a general meeting, does not count.</li>
|
|
</ul>
|
|
<sup>Correct as of 3rd September 2021, check the Training Policy.</sup>
|
|
</div>
|
|
{% for level in object_list %}
|
|
<div class="card mb-2">
|
|
<div class="card-header"><a href="{{level.get_absolute_url}}">{{level}}</a></div>
|
|
<div class="card-body">{{level.description|markdown}}</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|