{% extends view.base_template|default:"subjects/base.html" %} {% load static i18n django_bootstrap5 utils %} {% block title %} {% translate "Edit subject" %} · {{ block.super }} {% endblock %} {% block content %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %} {% bootstrap_field form.privacy_level %}
{% if form.consent_status.value == 'confirmed' %}
{% translate 'Consent ID' %}: {{ consent_pseudonym }}
{% endif %} {% if object.consent.document.is_deprecated %}
{% blocktranslate %} The current consent refers to an outdated document and will soon expire, thus rendering the recruitment consent invalid. Please remove the current consent and contact the subject to confirm the latest document. {% endblocktranslate %}
{% endif %} {% if object.has_consent_from_before_full_age %}
{% blocktranslate %} The subject has recently come of age. Please remove the current consent and contact the subject for a new one. {% endblocktranslate %}
{% endif %}
{{ form.consent_status.help_text }}
{% bootstrap_field form.export_requested %} {% bootstrap_field form.to_be_deleted %}
{% endblock %} {% block extra_scripts %} {% endblock %}