{% extends "base.html" %} {% load wagtailcore_tags static i18n %} {# Dont include fixed apply button on this page #} {% block apply_button %}{% endblock %} {% block header_modifier %}header--light-bg{% endblock %} {% block content %} {% if form.errors or form.non_field_errors %}
There were some errors with your form. Please amend the fields highlighted below
{% if form.non_field_errors %} {% endif %}
{% endif %}
{% if not page.open_round and not page.start_date and not request.is_preview %} {# the fund has no open rounds and we arent on a round page #}

{% trans "Sorry this fund is not accepting applications at the moment" %}

{% else%}
{{ form.media }} {% csrf_token %} {% for field in form %} {% if field.field %} {% include "funds/includes/field.html" %} {% else %} {{ field }} {% endif %} {% endfor %}
{% endif %}
{% endblock %}