{% extends "studies/study_base.html" %} {% load i18n auth utils %} {% block content %}

{% trans "General" %}

{{ object|verbose_name:'principal_investigator' }}
{{ object|display:'principal_investigator' }}
{{ object|verbose_name:'affiliated_scientists' }}
{{ object|display:'affiliated_scientists' }}
{% trans 'Type of study' %}
{{ object|display:'study_type' }}
{% trans 'Scheduled runtime' %}
{% if object.sessions_start and object.sessions_end %} {{ object.sessions_start }} - {{ object.sessions_end }} {% elif object.sessions_start %} {{ object.sessions_start }} - {% trans 'not defined' %} {% else %} — {% endif %}
{% trans 'Consent document uploaded' %}
{% if object.consent %}{% trans 'Yes' %}{% else %}{% trans 'No' %}{% endif %}

{% trans "Member management" %}

{% trans 'Recruiters' %}
{{ object.recruiters|join:', '|default:'—' }}

{% trans "Recruitment settings" %}

{% trans 'Potential subjects' %}
{{ count }}
{% trans 'Studies in which potential subjects have pariticipated' %}
{% for study in related_studies %} {{ study }} ({{ study.count }}){% if not forloop.last %},{% endif %} {% empty %} — {% endfor %}
{% trans 'Recruitment text provided' %}
{% if object.recruitment_text %}{% trans 'Yes' %}{% else %}{% trans 'No' %}{% endif %}
{% trans 'Recruitment filters set' %}
{% if study.has_filters %}{% trans 'Yes' %}{% else %}{% trans 'No' %}{% endif %}
{% trans 'Exclusion criteria provided' %}
{% if object.exclusion_criteria %}{% trans 'Yes' %}{% else %}{% trans 'No' %}{% endif %}
{% has_perm 'studies.change_study' user study as can_change_study %} {% if study.has_missing_values and can_access_study and can_change_study %} {% endif %}

{% trans "Description" %}

{{ study.description|linebreaks }} {% endblock %}