{% extends "execution/base.html" %} {% load i18n utils auth %} {% block title %}{{ study }} · {{ block.super }}{% endblock %} {% block content %}

{{ subject.contact.full_name }}

{% trans 'Pseudonym' %}
{{ object.pseudonym }}
{{ subject.contact|verbose_name:'phone_number' }}
{{ subject.contact|display:'phone_number' }}
{{ subject.contact|verbose_name:'phone_number_alternative' }}
{{ subject.contact|display:'phone_number_alternative' }}

{% trans 'Appointments' %}

{% for session, appointment in object.get_appointments %}
{{ session.name }}
{% if appointment %} {% else %} — {% endif %}
{% empty %}
{% trans 'No sessions' %}
{% endfor %}
{% has_perm 'contacts.change_contact' user study as can_change_contact %} {% if can_change_contact %} {% if not subject.contact.is_complete %} {% endif %} {% trans 'Edit contact data' %} {% endif %} {% has_perm 'recruitment.change_attributeset' user study as can_change_attributeset %} {% if can_change_attributeset %} {% trans 'Edit attributes' %} {% endif %} {% has_perm 'subjects.change_subject' user study as can_change_subject %} {% if can_change_subject %} {% if subject.consent.document.is_deprecated or subject.has_consent_from_before_full_age %} {% endif %} {% trans 'Edit data protection' %} {% trans 'Edit additional info' %} {% endif %} {% endblock %}