{% extends "execution/participation_base.html" %} {% load i18n bootstrap4 utils %} {% block content %}
{% for session, appointment, form in appointments %}
{{ session.name }}
{% if appointment %}
{% csrf_token %} {% bootstrap_field form.show_up show_label=False %}
{% else %} — {% endif %}
{% empty %}
{% trans 'No sessions' %}
{% endfor %}
{% endblock %}