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