{% extends "base.html" %} {% load i18n static bootstrap4 utils auth %} {% block title %}{% trans "Recruitment" %} · {{ study }} · {{ block.super }}{% endblock %} {% block content %}

{{ study.name }}

{% trans "Recruiting:" %} {{ contact.full_name }}
{% if not object.match %} {% elif object.match == 'incomplete' %} {% endif %}
{{ contact|verbose_name:'email' }}
{{ contact|display:'email' }}
{{ contact|verbose_name:'phone_number' }}
{{ contact|display:'phone_number' }}
{{ contact|verbose_name:'phone_number_alternative' }}
{{ contact|display:'phone_number_alternative' }}

{% filter upper %} {% trans "Operational hints"%} {% endfilter %}

{{ contact|verbose_name:'preferred_contact_method' }}
{{ contact|display:'preferred_contact_method' }}
{% trans "Currently available" %}
{% if subject.is_available %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "General recruiting notes" %}
{% if subject.note_hard_of_hearing or subject.note_difficult_to_understand or subject.note_abusive_language or subject.subjectnote_set.exists %} {% if subject.note_hard_of_hearing %} {{ subject|verbose_name:'note_hard_of_hearing' }} {% endif %} {% if subject.note_difficult_to_understand %} {{ subject|verbose_name:'note_difficult_to_understand' }} {% endif %} {% if subject.note_abusive_language %} {{ subject|verbose_name:'note_abusive_language' }} {% endif %} {% for note in subject.subjectnote_set.all %} {{ note.content }} {% endfor %} {% else %} — {% endif %}
{% has_perm 'contacts.change_contact' user view.study as can_change_contact %} {% if can_change_contact %} {% trans 'Edit contact data'%} {% endif %} {% has_perm 'recruitment.change_attributeset' user view.study as can_change_attributeset %} {% if can_change_attributeset %} {% trans 'Edit attributes'%} {% endif %}
{{ study|verbose_name:'description' }}
{{ study|display:'description' }}
{{ study|verbose_name:'study_type' }}
{{ study|display:'study_type' }}
{{ study|verbose_name:'expense_allowance' }}
{% if study.expense_allowance %} {{ study.expense_allowance }}€ {% else %} — {% endif %}
{% trans 'Duration of sessions in minutes' %}
{% if study.studysession_set.all %} {% for session in study.studysession_set.all %} {{ 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' }}
{% if study.has_exclusion_criteria %}
{% trans "Exclusion criteria" %} {% if study.exclusion_criteria %} {{ study.exclusion_criteria|linebreaks }} {% endif %} {% if study.study_type == study.FMRI %}

{% trans "fMRI-specific exclusion criteria" %}

{% include "studies/__exclusioncriteria_fmri.html" %} {% endif %} {% bootstrap_field form.exclusion_criteria_checked %}
{% endif %} {% for error in form.non_field_errors %} {% endfor %} {% csrf_token %} {% bootstrap_field form.status %} {% bootstrap_field form.appointment %}
{% if is_contacts %} {% else %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}