{% extends "base.html" %} {% load wagtailcore_tags i18n %} {% block main %}

{{ page }}

{% if campaigns %} {{ campaigns.0|upper }} {% endif %}
{% language 'en' %}
{{ page.description|richtext }}
{% if page.objectives %}
{{ page.objectives|richtext }}
{% endif %} {% if page.audience %}
{{ page.audience|richtext }}
{% endif %} {% endlanguage %} {% if subscription %}
{% for occasion in subscription %} {% include "training/details/_item-sub.html" with occasion=occasion %} {% endfor %}
{% else %}
{% if teacherled %} {% for occasion in teacherled %} {% include "training/details/_item-date.html" with occasion=occasion %} {% endfor %} {% else %} {% include "training/details/_item-no-date.html" %} {% endif %}
{% if self_study %}
{% for occasion in self_study %} {% include "training/details/_item-online.html" with occasion=occasion %} {% endfor %}
{% endif %} {% endif %} {% if bundles %}
{% for bundle in bundles %}

{{ bundle }}

{% blocktrans with discount=bundle.discount %}Also book the following courses and/or exams at the same time and get a {{ discount }}% discount:{% endblocktrans %}

{% for course in bundle.course_list %} {% include "training/course/_card.html" with target="_blank" %} {% endfor %}
{% endfor %}
{% endif %}
{% endblock %}