-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtemplate.njk
More file actions
58 lines (54 loc) · 1.66 KB
/
Copy pathtemplate.njk
File metadata and controls
58 lines (54 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% from "govuk/components/error-summary/macro.njk" import govukErrorSummary %}
{% extends "common/page.njk" %}
{% block page_content %}
{{ govukErrorSummary({
titleText: errorSummaryHeading,
classes: "hidden",
attributes: {
id: "uploadErrorSummary"
},
errorList: [
{
text: errors.applicant1InterimAppsEvidenceUploadedFiles.errorUploading,
href: elementSelectors.uploadButtonId,
attributes: {
id: "errorGeneric",
class: "hidden"
}
},
{
text: errors.applicant1InterimAppsEvidenceUploadedFiles.fileSizeTooBig,
href: elementSelectors.uploadButtonId,
attributes: {
id: "errorFileSizeTooBig",
class: "hidden"
}
},
{
text: errors.applicant1InterimAppsEvidenceUploadedFiles.fileWrongFormat,
href: elementSelectors.uploadButtonId,
attributes: {
id: "errorFileWrongFormat",
class: "hidden"
}
}
]
}) }}
<h1 class="govuk-heading-l" id="uploadEvidenceTitle">{{ title }}</h1>
{% block statement %}
<p class="govuk-body">{{ statement }}</p>
{% endblock %}
<p class="govuk-body">{{ certifiedTranslation | safe }}</p>
<p class="govuk-body">{{ toInclude.header }}</p>
<ul class="govuk-list govuk-list--bullet">
<li>{{ toInclude.options.bulletOne }}</li>
<li>{{ toInclude.options.bulletTwo }}</li>
<li>{{ toInclude.options.bulletThree }}</li>
</ul>
<p class="govuk-body">{{ line4 }}</p>
<p class="govuk-body">{{ line5 }}</p>
<p class="govuk-body">{{ evidenceDateReminder }}</p>
{% endblock %}
{% block form %}
{% include "./form.njk" %}
{% endblock %}