{% extends view.base_template|default:"base.html" %} {% load i18n static bootstrap4 utils %} {% block content %} {% if study.session_instructions %} {{ study.session_instructions|urlize|linebreaks }} {% endif %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %}
{{ study|verbose_name:'sessions_start' }}
{{ study|verbose_name:'sessions_end' }}

{% blocktranslate with reminder_period=reminder_period %}The subject will be reminded {{ reminder_period }} days before each appointment.{% endblocktranslate %}

{% for entry in form.appointments %}
{% bootstrap_field entry.field form_group_class="" %} {% if entry.invitation_url == 'not-invited' %}

{% translate 'Scheduler only available for participating subjects.' %}

{% elif entry.invitation_url %} {% translate 'Select timeslot for this subject' %} {% endif %}
{% endfor %}
{% translate 'Calendar' %}
{% endblock %} {% block extra_scripts %} {% endblock %}