{% for row in session %}
{% if not row.show_simple_session_info %} {% set collapsable = '' %}
{% if row.course_list_session_style == 1 %} {# Classic #} {{ row.title }} {{ row.title }} {% elseif row.course_list_session_style == 2 %} {# No link #} {{ row.title }} {{ row.title }} {% elseif row.course_list_session_style == 3 %} {# Foldable #} {% set collapsable = 'collapse' %} {% endif %} {% if row.show_actions %} {% endif %}
{% endif %}
{% if row.show_simple_session_info %}
{% if row.description != '' %} {{ row.description }} {% endif %}
{% if row.coach_name != '' %} {{ row.coach_name }} {% endif %} {{ row.date }}
{% if row.coaches %}
{{ "teacher.png"|icon(16) ~ row.coaches }}
{% endif %}
{% if row.show_actions %} {% endif %}
{% else %}
{% if row.description != '' %} {{ row.description }} {% endif %}
{% if row.coach_name != '' %} {{ row.coach_name }} {% endif %} {{ row.date }}
{% for item in row.courses %}
{% if item.link %} {% else %} {{ 'blackboard.png' | img(48, item.title ) }} {% endif %}

{{ item.title }}

{% if item.teachers|length > 0 %} {% for coach in item.teachers %} {{ loop.index > 1 ? ' | ' }} {{ coach.firstname }}, {{ coach.lastname }} {% endfor %} {% endif %}
{% endfor %}
{% endif %}
{% endfor %}