{% extends view.base_template|default:"studies/study_recruitmentsettings_base.html" %} {% load i18n auth django_bootstrap5 %} {% block title %}{% translate "Inclusion/exclusion criteria" %} · {{ block.super }}{% endblock %} {% block content %}
{% csrf_token %} {% bootstrap_field form.exclusion_criteria %} {% if CASTELLUM_GENERAL_EXCLUSION_CRITERIA %}
{% translate 'General criteria' %}
{{ CASTELLUM_GENERAL_EXCLUSION_CRITERIA|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 %}
{% endblock %}