{% extends "execution/participation_base.html" %} {% load i18n utils auth %} {% block content %} {% if pseudonyms|length > 1 %}

{% translate 'Pseudonyms' %}

{% for domain, pseudonym in pseudonyms %}
{{ domain }}
{{ pseudonym }}
{% endfor %}
{% else %}
{% translate 'Pseudonym' %}
{% for domain, pseudonym in pseudonyms %}
{{ pseudonym }}
{% endfor %}
{% endif %} {% include 'contacts/__contact.html' with subject=subject %} {% has_perm 'subjects.change_subject' user study as can_change_subject %} {% if can_change_subject %}
{% if not subject.contact.is_complete %} {% icon 'exclamation-triangle' label=_('Missing values') %} {% endif %} {% translate 'Edit contact data' %} {% translate 'Edit attributes' %} {% if subject.consent.document.is_deprecated or subject.has_consent_from_before_full_age %} {% icon 'exclamation-triangle' label=_('Missing values') %} {% endif %} {% translate 'Edit data protection' %} {% translate 'Edit additional info' %}
{% endif %}
{% translate 'Dropped out' context 'verb' %}
{% endblock %}