{% extends view.base_template|default:"subjects/base.html" %} {% load static i18n django_bootstrap5 %} {% block title %} {% translate "Change recruitment consent" %} · {{ block.super }} {% endblock %} {% block content %}
{% include 'utils/form_errors.html' with form=form %} {% csrf_token %}

{% translate "Enter new recruitment consent" %}

{% translate "Please select which consent document the subject has agreed to:" %}

{% for value, label in form.document.field.choices %}
{% endfor %}
{% bootstrap_field form.file %}
{% translate 'Cancel' %}
{% endblock %} {% block extra_scripts %} {% endblock %}