{% extends "look-and-feel/layouts/two_thirds.html" %} {% from "look-and-feel/components/header.njk" import header %} {% from "look-and-feel/components/check-your-answers.njk" import answer %} {% from "look-and-feel/components/phase_banner.njk" import phaseBanner %} {% from "look-and-feel/components/fields.njk" import hiddenInput %} {% from "look-and-feel/components/errors.njk" import errorSummary %} {% from "look-and-feel/components/i18n.njk" import languageSwitch %} {% set defaultContent = { title: 'Check your answers', incompleteHeader: 'Your application is incomplete', incompleteMessage: 'There are still some questions to answer.', continue: 'Continue your application', statementOfTruth: 'By submitting this notification you are confirming that, to the best of your knowledge, the details you are providing are correct.', sendApplication: 'Send your application', cyaTableCaption: 'This table has a list of your questions and answers. The first column is the question. The second column is your answer and the third column is a link to change your answer of that particular question.', nowSendApplication: 'Now send your application' } %} {% block pageTitle %}{{ pageContent.title | default(defaultContent.title) }}{% endblock %} {% block breadcrumbs %} {{ phaseBanner(phase, feedbackLink) }} Back {{ languageSwitch(i18n.currentLanguage, i18n.availableLanguages) }} {% endblock %} {% block two_thirds %} {{ errorSummary(fields, content.thereWasAProblem) }} {{ header(pageContent.title | default(defaultContent.title)) }}
{{ pageContent.incompleteMessage | default(defaultContent.incompleteMessage) }}
{{ pageContent.continue | default(defaultContent.continue) }} {% endblock %} {% endif %} {% if complete %} {% block statement_of_truth_content %}{{ pageContent.statementOfTruth | default(defaultContent.statementOfTruth) }}
{% endblock %} {% endif %} {% block after_form -%} {%- endblock %} {% endblock %}