{% extends "deliver_grant_funding/grant_base.html" %} {% from "govuk_frontend_jinja/components/back-link/macro.html" import govukBackLink %} {% set type_constants = collection.type.constants %} {% set page_title = "Test the grant recipient journey" %} {% set active_item_identifier = type_constants.active_nav %} {% set grant_admin = authorisation_helper.is_deliver_grant_admin(grant.id, current_user) %} {% block beforeContent %} {{ govukBackLink({ "href": url_for('deliver_grant_funding.list_collection_sections', grant_id=grant.id, collection_type=collection.type, collection_id=collection.id), "text": "Back" }) }} {% endblock %} {% block content %}

Test the {{ collection.name }} {{ type_constants.singular }}

Test the {{ type_constants.singular }} as grant recipients will see it in Access grant funding.

{# todo: having this handy check and link (or button) might be nice to have on pages in deliver in general for power users #} {# to move between the two systems #} {% if existing_submissions %}

Your team has previously started a test submission for this {{ type_constants.singular }}.

You can return to the submission in Access grant funding or continue to receive the initial grant recipient email again.

{% endif %}

You'll be able to:

{% if test_grant_recipients %}
{{ form.csrf_token }} {{ form.organisation(params={ "label": { "text": "Select a test organisation:", "classes": "govuk-label--s" } }) }}
{{ form.submit }}
{% else %}

You don't have access to any test organisations for this grant.

{% endif %}
{% endblock content %}