{% extends "access_grant_funding/base.html" %} {% from "common/macros/submissions.html" import answers_summary_list with context %} {% from "common/macros/status.html" import submissionStatusTag with context %} {% set page_title = submission.long_collection_name if submission.is_submitted else "Review " ~ submission.collection.type.constants.singular ~ ": " ~ submission.long_collection_name %} {% set show_section_numbers = false %} {% set assetPath = vite_asset("assets", external=True) %} {% block head %} {% endblock head %} {% set heading = "MHCLG Deliver grant funding" if is_deliver_grant_funding() else "MHCLG Access grant funding" %} {% block header %}
{% endblock header %} {% block beforeContent %} {% endblock beforeContent %} {% block content %}
{# exception for xl heading where we'd anticipate having many subheadings and levels of heirarchy on this page #}

{{ page_title }}

{% if submission.collection.reporting_period_start_date and submission.collection.reporting_period_end_date %} {% endif %} {% if submission.sent_for_certification_by %} {% elif submission.submitted_by %} {% endif %} {% if submission.sent_for_certification_at_utc and not submission.submitted_at_utc %} {% endif %} {% if submission.submitted_at_utc and not submission.certified_by %} {% endif %} {% if submission.certified_by %} {% endif %}

{{ submission.collection.type.constants.singular | uppercase_first }} sections

    {% for form in submission.get_ordered_visible_forms() %}
  • {{ form.title }}
  • {% endfor %}
{% for form in submission.get_ordered_visible_forms() %}

{{ (loop.index ~ ". ") if show_section_numbers else "" }}{{ form.title }}

{% if submission.get_status_for_form(form) == enum.tasklist_section_status.NOT_NEEDED %}

Section was not needed.

{% else %} {{ answers_summary_list(submission, form, should_show_answers_diff=False) }} {% endif %}
{% endfor %}
{% endblock %} {% block footer %} {% endblock footer %} {# inline this for now to avoid fetching which can miss without optimisations #} {% set govuk_crest_svg %} {% endset %}