{% set badges_per_page = 8 %} {% set col_count = 0 %} {% for participant in participants %} {% if col_count == 0 %}
{% endif %}
{{ course.name }}
🏊
{{ participant.firstName }}
{{ participant.lastName }}
{% if course.location %} 📍 {{ course.location.name }} {% endif %}
{% if course.targetGroup %} {{ course.targetGroup }} {% endif %}
{% set col_count = col_count + 1 %} {% if col_count == 2 %}
{% set col_count = 0 %} {% if not loop.last and loop.index % badges_per_page == 0 %}
{% endif %} {% endif %} {% endfor %} {% if col_count > 0 %} {% endif %}