{% extends view.base_template|default:"studies/study_recruitmentsettings_base.html" %} {% load static i18n django_bootstrap5 %} {% block title %} {% translate "General recruitment settings" %} · {{ block.super }} {% endblock %} {% block content %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %} {% if study.is_filter_trial %} {{ form.recruitment_text.as_hidden }} {% else %} {% bootstrap_field form.recruitment_text %} {% if CASTELLUM_GENERAL_RECRUITMENT_TEXT %}
{% translate 'General recruitment text' %}
{{ CASTELLUM_GENERAL_RECRUITMENT_TEXT|urlize|linebreaks }}
{% endif %} {% for study_type in study.study_type.all %} {% if study_type.exclusion_criteria %}
{% translate 'Criteria for:' %} {{ study_type.label }}
{{ study_type.exclusion_criteria|urlize|linebreaks }}
{% endif %} {% endfor %} {% endif %} {% bootstrap_field form.advanced_filtering %} {% bootstrap_field form.is_exclusive %} {% bootstrap_field form.complete_matches_only %} {% if form.geo_filter %} {% bootstrap_field form.geo_filter %} {% endif %}
{% endblock %}