{% extends "orga/submission/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load rules %} {% load static %} {% block submission_title %}{% translate "Anonymisation" %} :: {% endblock submission_title %} {% block scripts %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock scripts %} {% block submission_content %}
{% include "common/forms/errors.html" %} {% csrf_token %}

{% translate "Original" %}

{% translate "Anonymised" %}

{% blocktranslate trimmed %} If a review phase with anonymisation is currently active, all reviewers who have no permissions to change this proposal will be shown the anonymised proposal content. {% endblocktranslate %}
{% for field in form %}

{{ field.label }}

{{ field.field.plaintext|rich_text }}

{{ field.as_field_group }}
{% endfor %}
{% if next_unanonymised %} {% endif %}
{% endblock submission_content %}