{% extends 'base.html' %} {% block title %}{% translate 'Profile' %} - {{ block.super }}{% endblock %} {% block content %} {{ block.super }}

{% translate 'Profile' %}

{% csrf_token %}

{% translate 'Personal information' %}

{% for field in profile_form %} {% if field != profile_form.delegates %} {% include 'bootstrap_form_field.html' with field=field %} {% endif %} {% endfor %}
{% if user.is_editor %}

{% translate 'Delegates and emails' %}

{% if delegate_of %} {% endif %}
{% translate 'Your delegates' %}
{% include 'bootstrap_form_field_widget.html' with field=profile_form.delegates %}
{% translate 'Your delegates will receive emails sent to you in CC, will be able to prepare evaluations on your behalf, and will see the results of your evaluations.' %}
{% translate 'You are a delegate of' %}
{% for delegate in delegate_of %} {{ delegate.full_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% translate 'CC all my emails to' %}
{% for cc_user in cc_users %} {{ cc_user.full_name }}{% if not forloop.last %}, {% endif %} {% empty %} {% translate 'Nobody' %} {% endfor %}
{% blocktranslate %}You receive CC'ed emails for{% endblocktranslate %}
{% for ccing_user in ccing_users %} {{ ccing_user.full_name }}{% if not forloop.last %}, {% endif %} {% empty %} {% translate 'Nobody' %} {% endfor %}
{% endif %}
{% endblock %} {% block modals %} {{ block.super }} {% translate 'Request user setting changes' as title %} {% translate 'Please tell us which of your settings we should change.' as teaser %} {% include 'contact_modal.html' with modal_id='changeRequestModal' user=request.user title=title teaser=teaser %} {% endblock %}