{% extends "access_grant_funding/base.html" %} {% from "govuk_frontend_jinja/components/button/macro.html" import govukButton %} {% set page_title = "Apply for the " ~ grant.name %} {% block head %} {{ super() }} {% endblock head %} {% block content %}

{{ page_title }}

{{ grant.description }} {% if collection.prospectus_url %} Read full details in the grant's prospectus (opens in new tab). {% endif %}

To apply for this grant, you must meet the eligibility criteria.

If you’re eligible, you’ll be able to access the application form by either:

{% if collection.submission_period_end_date %}

Deadline for applications: {{ format_date_short(collection.submission_period_end_date) }}

{% endif %}
{{ form.csrf_token }} {{ govukButton({ "text": "Start now", "isStartButton": true, "type": "submit" }) }}
{% endblock content %}