{% from "govuk_frontend_jinja/components/panel/macro.html" import govukPanel %} {% extends "access_grant_funding/base.html" %} {% set constants = submission_helper.collection.type.constants %} {# todo: move the suffix to the base template and call super #} {% set page_title = constants.singular | uppercase_first ~ " submitted to certifier - " ~ submission_helper.long_collection_name ~ " - " ~ grant_recipient.grant.name %} {% set active_item_identifier = constants.active_nav %} {% block content %}
{% set reference_html %} {{ constants.singular | uppercase_first }}
{{ submission_helper.long_collection_name }} for {{ submission_helper.collection.grant.name }}

Your reference number
{{ submission_helper.reference }} {% endset %} {{ govukPanel({ "titleText": constants.singular | uppercase_first ~ " submitted to certifier", "html": reference_html }) }}

We have sent a confirmation email to you and anyone else who has access to this {{ constants.singular }}.

What happens next

{% set submission_deadline = format_date(submission_helper.collection.submission_period_end_date) if submission_helper.collection.submission_period_end_date else "(Dates to be confirmed)" %}

{{ grant_recipient.certifier_names }} will need to review and sign off the {{ constants.singular }} by {{ submission_deadline }}.

You will receive an email when your {{ constants.singular }} is signed off and submitted.

If a certifier needs to decline sign off, you will receive an email with their reason for declining.

You cannot make changes while awaiting sign off, or once the {{ constants.singular }} has been signed off and submitted. If you need to make a change before the {{ constants.singular }} is signed off, the certifier should decline sign off.

Tell us what you think of this service (opens in new tab)

{% set back_link = ( url_for("access_grant_funding.list_collections", organisation_id=grant_recipient.organisation.id, grant_id=grant_recipient.grant.id) if not submission_helper.collection.allow_multiple_submissions else url_for("access_grant_funding.list_collection_submissions", organisation_id=grant_recipient.organisation.id, grant_id=grant_recipient.grant.id, collection_id=submission_helper.collection.id) ) %} Return to {{ constants.plural }}

{% endblock content %}