Skip to content

Commit 925a522

Browse files
Merge pull request #26 from x-govuk/add-task-list-pattern
Add task list page template
2 parents 30594d5 + 9aa50f1 commit 925a522

5 files changed

+110
-5
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## Unreleased
3+
## 2.0.0
4+
5+
- [#26 - Add task list page template](https://github.com/alphagov/govuk-prototype-kit-common-templates/pull/26)
46

57
## 1.2.2
68

govuk-prototype-kit.config.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"pluginDependencies": [{
99
"packageName": "govuk-frontend",
10-
"minVersion": "4.4.0"
10+
"minVersion": "5.0.0"
1111
}],
1212
"sass": [
1313
"/sass/_contents-list.scss",
@@ -54,5 +54,10 @@
5454
"name": "Mainstream guide page",
5555
"path": "/templates/mainstream-guide.html",
5656
"type": "nunjucks"
57+
},
58+
{
59+
"name": "Task list page (for GOV.UK Frontend >=5.0.0)",
60+
"path": "/templates/task-list.html",
61+
"type": "nunjucks"
5762
}]
5863
}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@govuk-prototype-kit/common-templates",
3-
"version": "1.2.2",
3+
"version": "2.0.0",
44
"description": "Common service page templates for the GOV.UK Prototype Kit",
55
"author": "GOV.UK Prototype team, UK Government Digital Service",
66
"license": "MIT",

templates/task-list.html

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{% extends "layouts/main.html" %}
2+
3+
{% block pageTitle %}
4+
Task list template – {{ serviceName }} – GOV.UK Prototype Kit
5+
{% endblock %}
6+
7+
{% block beforeContent %}
8+
{% endblock %}
9+
10+
{% block content %}
11+
<div class="govuk-grid-row">
12+
<div class="govuk-grid-column-two-thirds">
13+
14+
<h1 class="govuk-heading-l">{{ serviceName }}</h1>
15+
16+
<h2 class="govuk-heading-m">[ Heading for first set of tasks ]</h2>
17+
18+
{% set completedStatus = {
19+
text: "Completed"
20+
} %}
21+
22+
{% set incompleteStatus = {
23+
text: "Incomplete",
24+
classes: "govuk-tag--blue"
25+
} %}
26+
27+
{# To switch between the completed and incomplete statues, use some inline logic within the component below, like this: "status: (completedStatus if ... else incompleteStatus)" #}
28+
29+
{{ govukTaskList({
30+
idPrefix: "first-section",
31+
items: [
32+
{
33+
title: {
34+
text: "Name of first task"
35+
},
36+
href: "#",
37+
status: completedStatus
38+
},
39+
{
40+
title: {
41+
text: "Name of second task"
42+
},
43+
href: "#",
44+
status: incompleteStatus
45+
}
46+
]
47+
}) }}
48+
49+
<h2 class="govuk-heading-m govuk-!-margin-top-5">[ Heading for second set of tasks ]</h2>
50+
51+
{{ govukTaskList({
52+
idPrefix: "second-section",
53+
items: [
54+
{
55+
title: {
56+
text: "Name of third task"
57+
},
58+
href: "#",
59+
status: completedStatus
60+
},
61+
{
62+
title: {
63+
text: "Name of fifth task"
64+
},
65+
href: "#",
66+
status: incompleteStatus
67+
},
68+
{
69+
title: {
70+
text: "Name of sixth task"
71+
},
72+
href: "#",
73+
status: completedStatus
74+
},
75+
{
76+
title: {
77+
text: "Name of seventh task"
78+
},
79+
href: "#",
80+
status: incompleteStatus
81+
},
82+
{
83+
title: {
84+
text: "Name of eighth task"
85+
},
86+
href: "#",
87+
status: incompleteStatus
88+
}
89+
]
90+
}) }}
91+
92+
<div class="govuk-!-margin-top-5">
93+
{{ govukButton({ text: "Apply", href: "#" }) }}
94+
</div>
95+
96+
</div>
97+
</div>
98+
{% endblock %}

0 commit comments

Comments
 (0)