{% extends "base-apply.html" %} {% load i18n wagtailcore_tags wagtailsettings_tags %} {% block body_class %}{% endblock %} {% block content %}
{% if form_submission.status == 'draft' %}

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

{% trans "Please note that your application is not submitted for review." %}

{% if request.user.is_authenticated %}

{% trans "You can access your applications from your dashboard. From there, you can complete and submit them." %}

{% else %}

{% trans "You can complete your application by following the log-in details emailed to you." %}

{% endif %} {% else %}

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

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

{% 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 %} {% if email_context.confirmation_text_extra %}

{{ email_context.confirmation_text_extra|urlize }}

{% endif %} {% endwith %} {% if form_submission.round and settings.funds.ApplicationSettings.extra_text_round %}
{{ settings.funds.ApplicationSettings.extra_text_round|richtext }}
{% elif settings.funds.ApplicationSettings.extra_text_lab %}
{{ settings.funds.ApplicationSettings.extra_text_lab|richtext }}
{% endif %} {% endif %}
{% if request.user.is_authenticated and request.user.can_access_dashboard%} {% trans "Go to your dashboard" %} {% if form_submission.status == 'draft' %} {% trans "Continue editing" %} {% else %} {% trans "View your submission" %} {% endif %} {% else %} {% trans "Log in" %} {% endif %}
{% endblock %}