{% extends 'ddm_core/page_with_form.html' %} {% load static %} {% block page_title %}Edit Uploader Translations{% endblock %} {% block main_heading %}Edit Uploader Translations for "{{ object.name }}"{% endblock %} {% block main_form %}
{% csrf_token %} {{ form.media }}
{% if form.errors %}

The form could not be processed. Please check the issues highlighted below.

{% endif %} {{ form.non_field_errors }}
Edit Custom Uploader Translations
{% for field in form %}

{{ field.help_text }}

For example, the donation consent question can be changed by setting the custom translations to: {"en": {"feedback": {"donation-question": "custom english question"}}, "de": {"feedback": {"donation-question": "custom german question"}}}

{{ field.errors }} {{ field }}

Below you can see the structure of the original translation file to identify the keys you want to overwrite.

{% endfor %}
{% with locales_example="
"|add:locales|add:"
" %} {% include "ddm_core/components/info_collapsible.html" with element_id="ulbps" title="See original translations" include_path="" body=locales_example %} {% endwith %} {% block cancel %}

Cancel

{% endblock %} {% endblock %} {% block breadcrumbs %} Projects / "{{ object.name|truncatechars:15 }}" Project / Data Donation / Edit Uploader Translations {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}