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

{% trans 'Profile' %}

{% trans 'Personal information' %}

{% if user.is_editor %} {% endif %}
{% trans 'Title' %} {{ user.title|default_if_none:"" }}
{% trans 'First name' %} {{ user.first_name|default_if_none:"" }}
{% trans 'Last name' %} {{ user.last_name|default_if_none:"" }}
{% trans 'Email' %} {{ user.email|default_if_none:"" }}
{% trans 'CC all my emails to' %} {% for cc_user in cc_users %} {{ cc_user.full_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% blocktrans %}You receive CC'ed emails for{% endblocktrans %} {% for ccing_user in ccing_users %} {{ ccing_user.full_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% if user.is_editor %}
{% csrf_token %} {% include 'bootstrap_form_errors.html' with errors=form.non_field_errors %}

{% trans 'Delegates' %}

{% trans 'Your delegates will receive all your emails in CC and will be able to prepare evaluations and see results on your behalf.' %}

{% if delegate_of %} {% endif %}
{% trans 'Your delegates' %}
{% include 'bootstrap_form_errors.html' with errors=form.delegates.errors %} {{ form.delegates }}
{% trans 'You are a delegate of' %}
{% for delegate in delegate_of %} {{ delegate.full_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% endblock %} {% block modals %} {{ block.super }} {% trans 'Request user setting changes' as title %} {% trans '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 %}