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

{{ 'SeeSequences'|get_lang }}

{% if session.is_subscribed %} {{ already_subscribed_label }} {% elseif _u.logged == 0 %} {{ '' }} {% else %} {{ session.subscribe_button }} {% endif %}

{% else %}
{{ 'NoResults'|get_lang }}
{% endfor %}
{{ catalog_pagination }} {% endblock %}