{% extends "base.html" %} {% load i18n wagtailcore_tags wagtailsettings_tags %} {% block header_modifier %}header--light-bg{% endblock %} {% block content %}
{% if form_submission.status == 'draft' %}

{% trans "Your application is saved as a draft." %}

{% else %}

{% blocktrans %}Thank you for your submission to the {{ ORG_LONG_NAME }}.{% endblocktrans %}

{% endif %}
{% if form_submission.status == 'draft' %}

{% trans "Please note that it is not submitted for review. You can complete your application by following the log-in details emailed to you." %}

{% else %}

{% trans "An e-mail with more information has been sent to the address you entered." %}

{% endif %}

{% blocktrans with email=ORG_EMAIL|urlize %}If you do not receive an e-mail within 15 minutes please check your spam folder and contact {{ email }} for further assistance.{% endblocktrans %}

{% with email_context=page.specific %}

{{ email_context.confirmation_text_extra|urlize }}

{% endwith %} {% block extra_text %}{{ settings.funds.ApplicationSettings.extra_text_round|richtext }}{% endblock %}
{% endblock %}