{% extends "studies/study_recruitmentsettings_base.html" %} {% load i18n auth bootstrap4 %} {% block title %}{% translate "Inclusion/exclusion criteria" %} · {{ block.super }}{% endblock %} {% block content %}
{% csrf_token %} {% bootstrap_field form.exclusion_criteria %} {% if general_criteria %}
{% translate 'General criteria' %}
{{ general_criteria|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|linebreaks }}
{% endif %} {% endfor %} {% if not readonly %}
{% endif %}
{% endblock %}