{% extends "recruitment/participation_base.html" %} {% load i18n static django_bootstrap5 utils auth %} {% block title %}{% translate "Recruitment" %} · {{ block.super }}{% endblock %} {% block content %} {% if not object.match %} {% else %} {% if object.match == 'incomplete' %} {% endif %} {% if subject.contact.has_legal_representative and study.geo_filter %} {% endif %} {% endif %} {% if not subject.has_consent %} {% endif %}
{% include 'contacts/__contact.html' with subject=subject %}
{% if CASTELLUM_GENERAL_RECRUITMENT_TEXT %} {{ CASTELLUM_GENERAL_RECRUITMENT_TEXT|urlize|linebreaks }} {% endif %} {% if study.recruitment_text %} {{ study.recruitment_text|urlize|linebreaks }} {% endif %}
{% translate 'Type of study' %}
{{ study|display:'study_type' }}
{% translate 'Duration of sessions in minutes' %}
{% if sessions %} {% for session in sessions %} {{ session.duration }}{% if not forloop.last %}, {% endif %} {% endfor %} {% else %} — {% endif %}
{{ study|verbose_name:'sessions_start' }}
{{ study|display:'sessions_start' }}
{{ study|verbose_name:'sessions_end' }}
{{ study|display:'sessions_end' }}
{{ study|verbose_name:'consent' }}
{% if study.consent %} {{ study.consent.name|basename }} {% else %} — {% endif %}
{% if study.has_exclusion_criteria %}
{% if study.exclusion_criteria %} {{ study.exclusion_criteria|urlize|linebreaks }} {% endif %} {% 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 %}

{{ study_type.label }}

{{ study_type.exclusion_criteria|urlize|linebreaks }} {% endif %} {% endfor %} {% bootstrap_field form.exclusion_criteria_checked %}
{% endif %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %} {% bootstrap_field form.status %}
{% bootstrap_field form.followup_date %}
{% bootstrap_field form.followup_time %}
{% bootstrap_field form.assigned_recruiter %}
{% endblock %} {% block extra_scripts %} {% endblock %}