{% extends "execution/participation_base.html" %} {% load i18n auth bootstrap5 utils %} {% block content %}
{% for session, appointment, form in appointments %}
{{ session.name }}
{% if appointment %}
{% csrf_token %} {% bootstrap_field form.show_up show_label=False form_group_class='me-2' %}
{% else %} — {% endif %}
{% empty %}
{% translate 'No sessions' %}
{% endfor %}
{% has_perm 'appointments.change_appointment' user study as can_change_appointment %} {% if can_change_appointment %}
{% translate 'Update' %}
{% endif %} {% endblock %}