{% extends "deliver_grant_funding/grant_base.html" %} {% from "govuk_frontend_jinja/components/back-link/macro.html" import govukBackLink %} {% set page_title = "Add section" %} {% set type_constants = collection.type.constants %} {% set active_item_identifier = type_constants.active_nav %} {% block beforeContent %} {{ govukBackLink({ "text": "Back", "href": back_link }) }} {% endblock %} {% block content %}
{{ grant.name }}

What is the name of the section?

Use sections to group related questions together. This helps the person completing the form to focus on one topic or ‘section’ at a time.

{# TODO/NOTE FOR CONTENT: SHOULD WE LIST THE EXISTING SECTION NAMES HERE? #}
{{ form.csrf_token }} {{ form.title(params={"label": {"classes": "govuk-visually-hidden"} }) }}
{{ form.submit }} Cancel
{% endblock content %}