{% extends "deliver_grant_funding/grant_base.html" %} {% from "deliver_grant_funding/macros/deliver_grant_funding_collection_breadcrumb.html" import deliver_grant_funding_collection_breadcrumb %} {% set page_title = "Change question group display options" ~ " - " ~ group.name %} {% set type_constants = db_form.collection.type.constants %} {% set active_item_identifier = type_constants.active_nav %} {% block beforeContent %} {% set truncated=False %} {% if group.parent %} {% set truncated=True %} {% endif %} {% set parent_html %} Question group: {{ group.name }} {% endset %} {% set parent_item={"html": parent_html, "href": url_for("deliver_grant_funding.list_group_questions", grant_id=grant.id, group_id=group.id)} %} {{ deliver_grant_funding_collection_breadcrumb( grant=grant, collection=db_form.collection, form=db_form, immediate_parent_breadcrumb_item=parent_item, this_page_breadcrumb_item={"text":"Question group add another"}, truncated=truncated ) }} {% endblock beforeContent %} {% block content %}
{{ grant.name }}

{{ form.questions_to_show_in_add_another_summary.label }}

The summary of each add another answer will be shown on the add another summary page and the check your answers page.

{{ form.csrf_token }} {{ form.questions_to_show_in_add_another_summary(params={ "fieldset": { "legend": { "classes": "govuk-fieldset__legend--l" } } }) }}
{{ form.submit(params={"text": "Update question group"}) }} Cancel
{% endblock content %}