{% extends template ~ "/layout/main.tpl" %} {% block body %}
{% if show_courses %}
{{ 'Courses'|get_lang }}
{% if not hidden_links %}
{% endif %}
{% endif %}
{% if show_sessions %}
{{ 'Sessions'|get_lang }}
{% endif %}
{% for session in sessions %}

{{ session.name }}

    {% if show_tutor %}
  • {{ session.coach_name }}
  • {% endif %}
  • {{ session.date }}
  • {% if session.tags %}
  • {{ session.tags|join(', ')}}
  • {% endif %}
{% if not _u.logged %}

{{ 'SeeCourseInformationAndRequirements'|get_lang }}

{% else %}

{{ 'SeeSequences'|get_lang }}

{% if session.is_subscribed %} {{ already_subscribed_label }} {% else %} {{ session.subscribe_button }} {% endif %}

{% endif %}
{% if _u.logged %} {% endif %}
{% else %}
{{ 'NoResults'|get_lang }}
{% endfor %}
{{ catalog_pagination }} {% endblock %}