{% load i18n %} {% load crispy_forms_tags %} {% if success %}
{% blocktrans trimmed with v_assignment=vocabulary.assignment m=member %} Du änderst den/die/das {{ v_assignment }} von {{ m }} {% endblocktrans %}
{% crispy form %}
{% if other_job_contacts %}
{% blocktrans trimmed %}
Folgende Personen werden automatisch über diese Änderung informiert:
{% endblocktrans %}
{% if member != editor %}
{{ member }}
{% endif %}
{% for email, coordinator in other_job_contacts %}
{{ coordinator|default:email }}
{% endfor %}
{% elif editor != member %}
{% blocktrans trimmed %}
{{ member }} wird automatisch über diese Änderung informiert.
{% endblocktrans %}
{% endif %}