{% if session.course_list_session_style == 1 %}
{# Classic #}
{{ session.title }}
{% elseif session.course_list_session_style == 2 %}
{# No link #}
{{ session.title }}
{% elseif session.course_list_session_style == 3 %}
{# Foldable #}
{{ session.title }}
{% set collapsable = 'collapse' %}
{% endif %}
{% if session.show_actions %}
{% endif %}
{% endif %}
{% if session.show_simple_session_info %}
{{ session.title ~ session.notifications }}
{% if session.show_description %}
{{ session.description }}
{% endif %}
{% if session.subtitle %}
{{ session.subtitle }}
{% endif %}
{% if session.teachers %}
{{ "teacher.png"|icon(16) ~ session.teachers }}
{% endif %}
{% if session.coaches %}
{{ "teacher.png"|icon(16) ~ session.coaches }}
{% endif %}
{% if session.show_actions %}
{% endif %}
{% else %}
{% if session.subtitle %}
{{ session.subtitle }}
{% endif %}
{% if session.show_description %}
{{ session.description }}
{% endif %}
{% for item in session.courses %}
{{ item.title }}
{% if item.coaches|length > 0 %}
{% for coach in item.coaches %}
{{ loop.index > 1 ? ' | ' }}
{{ coach.full_name }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}