{% from "common/partials/mhclg-test-banner.html" import mhclgInlinePageTestDataBanner %} {% from "govuk_frontend_jinja/components/back-link/macro.html" import govukBackLink %} {% extends "deliver_grant_funding/grant_base.html" %} {% set page_title = "Reopen submission - " ~ helper.long_collection_name %} {% set type_constants = helper.submission.collection.type.constants %} {% set active_item_identifier = type_constants.active_nav %} {% block beforeContent %} {% if helper.is_test %} {{ mhclgInlinePageTestDataBanner("Test submission") }} {% endif %} {{ govukBackLink({ "text": "Back", "href": url_for( "deliver_grant_funding.request_or_allow_changes" if feature_flags.PRE_AWARD.is_enabled else "deliver_grant_funding.view_submission", grant_id=grant.id, submission_id=helper.submission.id ) }) }} {% endblock beforeContent %} {% block content %}

{{ helper.submission.grant_recipient.organisation.name if helper.submission.grant_recipient else helper.submission.created_by.email }} Why are you reopening this {{ helper.long_collection_name }} submission?

We will send an email with your reason for reopening to:

{% set label_html %}

Why are you reopening the submission?

{% endset %} {{ form.csrf_token }} {{ form.reopened_reason( params={ "label":{ "html": label_html }, "maxwords": form.REASON_MAX_WORDS } ) }}
{{ form.submit }} Cancel
{% endblock content %}