{% extends 'base_print.xml' %} {% block content %}

TEC Training Item List

{% for category in categories %}

{{category}}

{% for item in category.items.all %}

{{ item }}

{{ item.description }} {% if item.prerequisites.exists %}

Competency Assessment Prerequisites:

    {% for p in item.prerequisites.all %}
  • {{p}}
  • {% endfor %}
{% endif %} {% endfor %} {% endfor %} {% endblock %}