{% extends template ~ "/layout/page.tpl" %} {% block body %}

{{ 'Sessions'|get_lang }}

{% if show_courses %} {% endif %}
{% for item in sessions %}
{% if item.category != '' %} {{ item.category }}
{% endif %}
{% if item.edit_actions != '' %} {% endif %} {% if item.is_subscribed %} {{ already_subscribed_label }} {% endif %}
{% if show_tutor %}
{{ item.coach_name }}

{{ 'SessionGeneralCoach'|get_lang }}

{% endif %}
  • {{ item.nbr_courses ~ ' ' ~ 'Courses'|get_lang }}
  • {{ item.nbr_users ~ ' ' ~ 'NbUsers'|get_lang }}
{{ item.duration ? 'SessionDurationXDaysLeft'|get_lang|format(item.duration) : item.date }}
{% if item.price %} {{ item.price }} {% endif %}
{% if _u.logged %}
{% if not item.sequences is empty %} {% endif %} {% if item.is_subscribed == false %} {{ item.subscribe_button }} {% endif %}
{% endif %}
{% if _u.logged %} {% endif %}
{% else %}
{{ 'NoResults'|get_lang }}
{% endfor %}
{{ catalog_pagination }} {% endblock %}