govuk_navigation_helpers 8.2.1 → 8.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/config/tasklists/learn-to-drive-a-car.json +0 -4
- data/lib/govuk_navigation_helpers/tasklist_content.rb +0 -2
- data/lib/govuk_navigation_helpers/version.rb +1 -1
- data/spec/tasklist_content_spec.rb +0 -122
- metadata +2 -4
- data/config/tasklists/end-a-civil-partnership.json +0 -335
- data/config/tasklists/get-a-divorce.json +0 -333
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1816b8fab85ec2930fcf6753fa2e004fe569dd4
|
|
4
|
+
data.tar.gz: 508d10c31eaf9a154fe4438cb1fb8dde4c8b00cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5ae309f9940333528a216fee3115c4bbcd7bb05767ffcf864221a958b87aae9c4668b178e9756094c99ca896a2fc722420419b2fd04808569f0809602261097
|
|
7
|
+
data.tar.gz: 4e494d267493f9f33db3fe46abe91685822d763a4acaad9bc18969a4b8f078042666c8a196ec47590b0c2f0a93b30969cdf864484ccd5a8f3ac372609082a66a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## Unreleased
|
|
2
|
+
|
|
3
|
+
## 8.2.2
|
|
4
|
+
* Remove get-a-divorce and end-a-civil-partnership content. The schema is changing and these aren't live at the moment
|
|
5
|
+
* Update secondary content list for learn-to-drive-a-car after performance analysis on which nav works better for these pages.
|
|
6
|
+
|
|
1
7
|
## 8.2.1
|
|
2
8
|
* Update related navigation sidebar helper to deduplicate mainstream topics with the same title as whithall topics.
|
|
3
9
|
Mainstream topics are preferred in the case of duplicates.
|
|
@@ -25,12 +25,8 @@
|
|
|
25
25
|
"/government/publications/l-plate-size-rules",
|
|
26
26
|
"/guidance/rules-for-observing-driving-tests",
|
|
27
27
|
"/report-an-illegal-driving-instructor",
|
|
28
|
-
"/report-driving-medical-condition",
|
|
29
28
|
"/report-driving-test-impersonation",
|
|
30
|
-
"/seat-belts-law",
|
|
31
|
-
"/speed-limits",
|
|
32
29
|
"/track-your-driving-licence-application",
|
|
33
|
-
"/vehicle-insurance",
|
|
34
30
|
"/driving-lessons-learning-to-drive/practising-with-family-or-friends",
|
|
35
31
|
"/driving-lessons-learning-to-drive/taking-driving-lessons",
|
|
36
32
|
"/driving-lessons-learning-to-drive/using-l-and-p-plates",
|
|
@@ -16,42 +16,6 @@ module GovukNavigationHelpers
|
|
|
16
16
|
).to eql('Learn to drive a car: step by step')
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
|
-
|
|
20
|
-
context 'when the path is /divorce/respond-to-a-divorce-petition' do
|
|
21
|
-
let(:path) { '/divorce/respond-to-a-divorce-petition' }
|
|
22
|
-
|
|
23
|
-
it 'returns "Get Divorce" tasklist' do
|
|
24
|
-
current_tasklist = described_class.current_tasklist(path)
|
|
25
|
-
|
|
26
|
-
expect(
|
|
27
|
-
current_tasklist.title
|
|
28
|
-
).to eql('Get a divorce: step by step')
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
context 'when the path is /end-civil-partnership' do
|
|
33
|
-
let(:path) { '/end-civil-partnership' }
|
|
34
|
-
|
|
35
|
-
it 'returns "End Civil Partnership" tasklist' do
|
|
36
|
-
current_tasklist = described_class.current_tasklist(path)
|
|
37
|
-
|
|
38
|
-
expect(
|
|
39
|
-
current_tasklist.title
|
|
40
|
-
).to eql('End a civil partnership: step by step')
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
context 'when the path is in "Get Divorce" and "End Civil Partnership"' do
|
|
45
|
-
let(:path) { '/money-property-when-relationship-ends' }
|
|
46
|
-
|
|
47
|
-
it 'returns "Get Divorce" tasklist by default' do
|
|
48
|
-
current_tasklist = described_class.current_tasklist(path)
|
|
49
|
-
|
|
50
|
-
expect(
|
|
51
|
-
current_tasklist.title
|
|
52
|
-
).to eql('Get a divorce: step by step')
|
|
53
|
-
end
|
|
54
|
-
end
|
|
55
19
|
end
|
|
56
20
|
end
|
|
57
21
|
|
|
@@ -165,12 +129,8 @@ module GovukNavigationHelpers
|
|
|
165
129
|
/government/publications/l-plate-size-rules
|
|
166
130
|
/guidance/rules-for-observing-driving-tests
|
|
167
131
|
/report-an-illegal-driving-instructor
|
|
168
|
-
/report-driving-medical-condition
|
|
169
132
|
/report-driving-test-impersonation
|
|
170
|
-
/seat-belts-law
|
|
171
|
-
/speed-limits
|
|
172
133
|
/track-your-driving-licence-application
|
|
173
|
-
/vehicle-insurance
|
|
174
134
|
/driving-lessons-learning-to-drive/practising-with-family-or-friends
|
|
175
135
|
/driving-lessons-learning-to-drive/taking-driving-lessons
|
|
176
136
|
/driving-lessons-learning-to-drive/using-l-and-p-plates
|
|
@@ -199,87 +159,5 @@ module GovukNavigationHelpers
|
|
|
199
159
|
).to match_array(related_paths)
|
|
200
160
|
end
|
|
201
161
|
end
|
|
202
|
-
|
|
203
|
-
context "get a divorce tasklist content" do
|
|
204
|
-
let(:tasklist_content) { described_class.new(file_name: "get-a-divorce", path: path) }
|
|
205
|
-
|
|
206
|
-
it "has symbolized keys" do
|
|
207
|
-
tasklist_content.tasklist.keys.each do |key|
|
|
208
|
-
expect(key.is_a?(Symbol)).to be true
|
|
209
|
-
end
|
|
210
|
-
end
|
|
211
|
-
|
|
212
|
-
it "has a title" do
|
|
213
|
-
expect(tasklist_content.title).to eql("Get a divorce: step by step")
|
|
214
|
-
end
|
|
215
|
-
|
|
216
|
-
it "has a base_path" do
|
|
217
|
-
expect(tasklist_content.base_path).to eql("/get-a-divorce")
|
|
218
|
-
end
|
|
219
|
-
|
|
220
|
-
it "configures a sidebar" do
|
|
221
|
-
expect(tasklist_content.tasklist[:heading_level]).to eql(3)
|
|
222
|
-
expect(tasklist_content.tasklist[:small]).to be true
|
|
223
|
-
end
|
|
224
|
-
|
|
225
|
-
it 'has all the primary paths' do
|
|
226
|
-
primary_paths = %w(
|
|
227
|
-
/divorce
|
|
228
|
-
/looking-after-children-divorce
|
|
229
|
-
/money-property-when-relationship-ends
|
|
230
|
-
/benefits-calculators
|
|
231
|
-
/report-benefits-change-circumstances
|
|
232
|
-
/contact-pension-service
|
|
233
|
-
/visas-when-you-separate-or-divorce
|
|
234
|
-
/stay-in-home-during-separation-or-divorce
|
|
235
|
-
/divorce/file-for-divorce
|
|
236
|
-
/divorce/grounds-for-divorce
|
|
237
|
-
/get-help-with-court-fees
|
|
238
|
-
/find-a-legal-adviser
|
|
239
|
-
/divorce-missing-husband-wife
|
|
240
|
-
/divorce/if-your-husband-or-wife-lacks-mental-capacity
|
|
241
|
-
/divorce/apply-for-decree-nisi
|
|
242
|
-
/divorce/apply-for-a-decree-absolute
|
|
243
|
-
).sort
|
|
244
|
-
|
|
245
|
-
# there are two primary paths twice in the JSON structure
|
|
246
|
-
# that's legit.
|
|
247
|
-
expect(
|
|
248
|
-
tasklist_content.primary_paths.sort.uniq
|
|
249
|
-
).to match_array(primary_paths)
|
|
250
|
-
end
|
|
251
|
-
|
|
252
|
-
it 'has related paths' do
|
|
253
|
-
related_paths = %w(
|
|
254
|
-
/divorce/respond-to-a-divorce-petition
|
|
255
|
-
/divorce/file-for-divorce
|
|
256
|
-
/looking-after-children-divorce/if-you-agree
|
|
257
|
-
/looking-after-children-divorce/mediation
|
|
258
|
-
/looking-after-children-divorce/types-of-court-order
|
|
259
|
-
/looking-after-children-divorce/apply-for-court-order
|
|
260
|
-
/looking-after-children-divorce/after-you-apply-for-a-court-order
|
|
261
|
-
/looking-after-children-divorce/change-or-enforce-an-order
|
|
262
|
-
/money-property-when-relationship-ends/apply-for-consent-order
|
|
263
|
-
/money-property-when-relationship-ends/mediation
|
|
264
|
-
/money-property-when-relationship-ends/apply-for-a-financial-order
|
|
265
|
-
/money-property-when-relationship-ends/how-the-court-splits-assets
|
|
266
|
-
/money-property-when-relationship-ends/maintenance-payments
|
|
267
|
-
/money-property-when-relationship-ends/tax
|
|
268
|
-
/visas-when-you-separate-or-divorce/apply-stay-uk
|
|
269
|
-
/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-registered
|
|
270
|
-
/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-unregistered
|
|
271
|
-
).sort
|
|
272
|
-
|
|
273
|
-
expect(
|
|
274
|
-
tasklist_content.related_paths.sort
|
|
275
|
-
).to match_array(related_paths)
|
|
276
|
-
end
|
|
277
|
-
|
|
278
|
-
it "has a link in the correct structure" do
|
|
279
|
-
first_link = tasklist_content.tasklist[:groups][0][0][:contents][1][:contents][0]
|
|
280
|
-
expect(first_link[:href]).to eql("https://www.relate.org.uk/relationship-help/help-separation-and-divorce")
|
|
281
|
-
expect(first_link[:text]).to eql("Get advice from Relate")
|
|
282
|
-
end
|
|
283
|
-
end
|
|
284
162
|
end
|
|
285
163
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: govuk_navigation_helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.2.
|
|
4
|
+
version: 8.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GOV.UK Dev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gds-api-adapters
|
|
@@ -196,8 +196,6 @@ files:
|
|
|
196
196
|
- LICENCE.txt
|
|
197
197
|
- README.md
|
|
198
198
|
- Rakefile
|
|
199
|
-
- config/tasklists/end-a-civil-partnership.json
|
|
200
|
-
- config/tasklists/get-a-divorce.json
|
|
201
199
|
- config/tasklists/learn-to-drive-a-car.json
|
|
202
200
|
- govuk_navigation_helpers.gemspec
|
|
203
201
|
- lib/govuk_navigation_helpers.rb
|
|
@@ -1,335 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "End a civil partnership: step by step",
|
|
3
|
-
"base_path": "/end-a-civil-partnership",
|
|
4
|
-
"description": "<p>Find out how to legally end your civil partnership in England and Wales.</p><p>There is a different process if you're in <a href=\"https://www.scotcourts.gov.uk/taking-action/divorce-and-dissolution-of-civil-partnership\">Scotland</a> or <a href=\"https://www.nidirect.gov.uk/articles/getting-divorcedissolution-civil-partnership\">Northern Ireland</a>.</p>",
|
|
5
|
-
"links": {
|
|
6
|
-
"breadcrumbs": [
|
|
7
|
-
{
|
|
8
|
-
"title": "Home",
|
|
9
|
-
"url": "/"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"title": "Births, deaths, marriages and care",
|
|
13
|
-
"url": "/browse/births-deaths-marriages"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"title": "Marriage, civil partnership and divorce",
|
|
17
|
-
"url": "/browse/births-deaths-marriages/marriage-divorce"
|
|
18
|
-
}
|
|
19
|
-
]
|
|
20
|
-
},
|
|
21
|
-
"ab_test_prefix": "CivilPartnership",
|
|
22
|
-
"related_paths": [
|
|
23
|
-
"/looking-after-children-divorce/if-you-agree",
|
|
24
|
-
"/looking-after-children-divorce/mediation",
|
|
25
|
-
"/looking-after-children-divorce/types-of-court-order",
|
|
26
|
-
"/looking-after-children-divorce/apply-for-court-order",
|
|
27
|
-
"/looking-after-children-divorce/after-you-apply-for-a-court-order",
|
|
28
|
-
"/looking-after-children-divorce/change-or-enforce-an-order",
|
|
29
|
-
"/money-property-when-relationship-ends/apply-for-consent-order",
|
|
30
|
-
"/money-property-when-relationship-ends/mediation",
|
|
31
|
-
"/money-property-when-relationship-ends/apply-for-a-financial-order",
|
|
32
|
-
"/money-property-when-relationship-ends/how-the-court-splits-assets",
|
|
33
|
-
"/money-property-when-relationship-ends/maintenance-payments",
|
|
34
|
-
"/money-property-when-relationship-ends/tax",
|
|
35
|
-
"/visas-when-you-separate-or-divorce/apply-stay-uk",
|
|
36
|
-
"/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-registered",
|
|
37
|
-
"/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-unregistered"
|
|
38
|
-
],
|
|
39
|
-
"tasklist": {
|
|
40
|
-
"groups": [
|
|
41
|
-
[
|
|
42
|
-
{
|
|
43
|
-
"title": "Get support and advice",
|
|
44
|
-
"optional": true,
|
|
45
|
-
"contents": [
|
|
46
|
-
{
|
|
47
|
-
"type": "paragraph",
|
|
48
|
-
"text": "You can get support and advice to help you deal with disputes and emotional stress."
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"type": "list",
|
|
52
|
-
"contents": [
|
|
53
|
-
{
|
|
54
|
-
"href": "https://www.relate.org.uk/relationship-help/help-separation-and-divorce",
|
|
55
|
-
"text": "Get advice from Relate"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"href": "http://www.counselling-directory.org.uk/adv-search.html",
|
|
59
|
-
"text": "Find a counsellor",
|
|
60
|
-
"context": "£35 to £60 per session"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"href": "https://www.samaritans.org/how-we-can-help-you/contact-us",
|
|
64
|
-
"text": "Contact the Samaritans if you need to speak to someone urgently"
|
|
65
|
-
}
|
|
66
|
-
]
|
|
67
|
-
}
|
|
68
|
-
]
|
|
69
|
-
}
|
|
70
|
-
],
|
|
71
|
-
[
|
|
72
|
-
{
|
|
73
|
-
"title": "Check if you can end your civil partnership",
|
|
74
|
-
"contents": [
|
|
75
|
-
{
|
|
76
|
-
"type": "paragraph",
|
|
77
|
-
"text": "You must meet certain legal requirements for you to end your civil partnership."
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"type": "list",
|
|
81
|
-
"style": "required",
|
|
82
|
-
"contents": [
|
|
83
|
-
{
|
|
84
|
-
"href": "/end-civil-partnership",
|
|
85
|
-
"text": "Check your civil partnership meets the criteria"
|
|
86
|
-
}
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
],
|
|
92
|
-
[
|
|
93
|
-
{
|
|
94
|
-
"title": "Make arrangements for your children, money and property",
|
|
95
|
-
"optional": true,
|
|
96
|
-
"contents": [
|
|
97
|
-
{
|
|
98
|
-
"type": "paragraph",
|
|
99
|
-
"text": "You should try to agree the arrangements for looking after your children and work out any money or property issues before you apply to end your civil partnership."
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"type": "list",
|
|
103
|
-
"style": "required",
|
|
104
|
-
"contents": [
|
|
105
|
-
{
|
|
106
|
-
"href": "/looking-after-children-divorce",
|
|
107
|
-
"text": "Make arrangements for your children"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"href": "/money-property-when-relationship-ends",
|
|
111
|
-
"text": "Divide your money and property"
|
|
112
|
-
}
|
|
113
|
-
]
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"type": "paragraph",
|
|
117
|
-
"text": "You should also check if ending your civil partnership will affect:"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"type": "list",
|
|
121
|
-
"style": "choice",
|
|
122
|
-
"contents": [
|
|
123
|
-
{
|
|
124
|
-
"href": "/benefits-calculators",
|
|
125
|
-
"text": "benefits you're eligible for"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"href": "/report-benefits-change-circumstances",
|
|
129
|
-
"text": "benefits you already receive"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"href": "/contact-pension-service",
|
|
133
|
-
"text": "your State Pension"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"href": "/visas-when-you-separate-or-divorce",
|
|
137
|
-
"text": "your UK visa status"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"href": "/stay-in-home-during-separation-or-divorce",
|
|
141
|
-
"text": "whether you can live in your current home"
|
|
142
|
-
}
|
|
143
|
-
]
|
|
144
|
-
}
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
],
|
|
148
|
-
[
|
|
149
|
-
{
|
|
150
|
-
"title": "File an application",
|
|
151
|
-
"contents": [
|
|
152
|
-
{
|
|
153
|
-
"type": "paragraph",
|
|
154
|
-
"text": "You need to fill in a dissolution application."
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"type": "list",
|
|
158
|
-
"style": "required",
|
|
159
|
-
"contents": [
|
|
160
|
-
{
|
|
161
|
-
"href": "/end-civil-partnership/file-application",
|
|
162
|
-
"text": "How to start the process to end your civil partnership"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"href": "/end-civil-partnership/grounds-for-ending-a-civil-partnership",
|
|
166
|
-
"text": "Check the list of reasons why you can end a civil partnership"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=1115",
|
|
170
|
-
"text": "Fill in a dissolution application form"
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"href": "/end-civil-partnership/file-application",
|
|
174
|
-
"text": "Pay the court fee",
|
|
175
|
-
"context": "£550"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"href": "/get-help-with-court-fees",
|
|
179
|
-
"text": "Get help with court fees"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"href": "https://courttribunalfinder.service.gov.uk/search/",
|
|
183
|
-
"text": "Send copies of the form to your nearest divorce centre"
|
|
184
|
-
}
|
|
185
|
-
]
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"type": "paragraph",
|
|
189
|
-
"text": "Your husband or wife will receive a copy of the dissolution application. When they respond, you'll be told what you need to do next."
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"type": "paragraph",
|
|
193
|
-
"text": "You might need to get legal advice if they disagree with the application."
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"type": "list",
|
|
197
|
-
"style": "required",
|
|
198
|
-
"contents": [
|
|
199
|
-
{
|
|
200
|
-
"href": "/find-a-legal-adviser",
|
|
201
|
-
"text": "Get legal advice"
|
|
202
|
-
}
|
|
203
|
-
]
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"type": "paragraph",
|
|
207
|
-
"text": "If they don't respond, you'll need to prove that they've received the application. For example, by using a bailiff to deliver it to them."
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"type": "substep",
|
|
211
|
-
"optional": true
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"type": "list",
|
|
215
|
-
"contents": [
|
|
216
|
-
{
|
|
217
|
-
"href": "/divorce-missing-husband-wife",
|
|
218
|
-
"text": "Find your civil partner's address",
|
|
219
|
-
"context": "£0 to £150"
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
"href": "/end-civil-partnership/if-your-partner-lacks-mental-capacity",
|
|
223
|
-
"text": "Get help if your civil partner can’t make decisions for themselves"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"href": "/divorce-missing-husband-wife",
|
|
227
|
-
"text": "End the civil partnership because you think your partner is dead",
|
|
228
|
-
"context": "£365"
|
|
229
|
-
}
|
|
230
|
-
]
|
|
231
|
-
}
|
|
232
|
-
]
|
|
233
|
-
}
|
|
234
|
-
],
|
|
235
|
-
[
|
|
236
|
-
{
|
|
237
|
-
"title": "Send the court more details about ending your civil partnership",
|
|
238
|
-
"contents": [
|
|
239
|
-
{
|
|
240
|
-
"type": "paragraph",
|
|
241
|
-
"text": "The court will tell you if you can continue with your dissolution application. You'll need to apply for a document called a 'conditional order'. You can give more information about why the civil partnership has broken down."
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"type": "list",
|
|
245
|
-
"style": "required",
|
|
246
|
-
"contents": [
|
|
247
|
-
{
|
|
248
|
-
"href": "/end-civil-partnership/apply-for-a-conditional-order",
|
|
249
|
-
"text": "Why you need a conditional order"
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=154",
|
|
253
|
-
"text": "Fill in the application form"
|
|
254
|
-
}
|
|
255
|
-
]
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"type": "paragraph",
|
|
259
|
-
"text": "You need to say why you're ending the civil partnership. Choose the form that matches what you put in the dissolution application:"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
"type": "list",
|
|
263
|
-
"style": "choice",
|
|
264
|
-
"contents": [
|
|
265
|
-
{
|
|
266
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=144",
|
|
267
|
-
"text": "unreasonable behaviour"
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=142",
|
|
271
|
-
"text": "adultery"
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=146",
|
|
275
|
-
"text": "desertion"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=149",
|
|
279
|
-
"text": "2 years' separation"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=150",
|
|
283
|
-
"text": "5 years' separation"
|
|
284
|
-
}
|
|
285
|
-
]
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"type": "paragraph",
|
|
289
|
-
"text": "Send the forms to the court. "
|
|
290
|
-
}
|
|
291
|
-
]
|
|
292
|
-
}
|
|
293
|
-
],
|
|
294
|
-
[
|
|
295
|
-
{
|
|
296
|
-
"title": "Apply for a final order",
|
|
297
|
-
"contents": [
|
|
298
|
-
{
|
|
299
|
-
"type": "paragraph",
|
|
300
|
-
"text": "Once you, your civil partner and the court all agree, you can apply for a document called a 'final order' to end your civil partnership. You can do this 6 weeks after you receive the conditional order."
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"type": "paragraph",
|
|
304
|
-
"text": "If you want a legally-binding arrangement for dividing money and property you must apply to the court for this before you apply for a final order."
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"type": "list",
|
|
308
|
-
"style": "required",
|
|
309
|
-
"contents": [
|
|
310
|
-
{
|
|
311
|
-
"href": "/end-civil-partnership/apply-for-a-final-order",
|
|
312
|
-
"text": "Why you need a final order"
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=1114",
|
|
316
|
-
"text": "Fill in the final order application form"
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"type": "paragraph",
|
|
323
|
-
"text": "Send the forms to the court."
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"type": "paragraph",
|
|
327
|
-
"text": "Once it's approved, they'll send you both a copy of the final order to say your civil partnership has legally ended."
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
]
|
|
331
|
-
}
|
|
332
|
-
]
|
|
333
|
-
]
|
|
334
|
-
}
|
|
335
|
-
}
|
|
@@ -1,333 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Get a divorce: step by step",
|
|
3
|
-
"base_path": "/get-a-divorce",
|
|
4
|
-
"description": "<p>How to file for divorce if you’re in England or Wales.</p><p>There is a different process if you’re <a href=\"/divorce/respond-to-a-divorce-petition\">responding to a divorce petition</a>, or if you’re in <a href=\"https://www.scotcourts.gov.uk/taking-action/divorce-and-dissolution-of-civil-partnership\">Scotland</a> or <a href=\"https://www.nidirect.gov.uk/articles/getting-divorcedissolution-civil-partnership\">Northern Ireland</a>.</p>",
|
|
5
|
-
"links": {
|
|
6
|
-
"breadcrumbs": [
|
|
7
|
-
{
|
|
8
|
-
"title": "Home",
|
|
9
|
-
"url": "/"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"title": "Births, deaths, marriages and care",
|
|
13
|
-
"url": "/browse/births-deaths-marriages"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"title": "Marriage, civil partnership and divorce",
|
|
17
|
-
"url": "/browse/births-deaths-marriages/marriage-divorce"
|
|
18
|
-
}
|
|
19
|
-
]
|
|
20
|
-
},
|
|
21
|
-
"ab_test_prefix": "GetADivorce",
|
|
22
|
-
"related_paths": [
|
|
23
|
-
"/divorce/respond-to-a-divorce-petition",
|
|
24
|
-
"/divorce/file-for-divorce",
|
|
25
|
-
"/looking-after-children-divorce/if-you-agree",
|
|
26
|
-
"/looking-after-children-divorce/mediation",
|
|
27
|
-
"/looking-after-children-divorce/types-of-court-order",
|
|
28
|
-
"/looking-after-children-divorce/apply-for-court-order",
|
|
29
|
-
"/looking-after-children-divorce/after-you-apply-for-a-court-order",
|
|
30
|
-
"/looking-after-children-divorce/change-or-enforce-an-order",
|
|
31
|
-
"/money-property-when-relationship-ends/apply-for-consent-order",
|
|
32
|
-
"/money-property-when-relationship-ends/mediation",
|
|
33
|
-
"/money-property-when-relationship-ends/apply-for-a-financial-order",
|
|
34
|
-
"/money-property-when-relationship-ends/how-the-court-splits-assets",
|
|
35
|
-
"/money-property-when-relationship-ends/maintenance-payments",
|
|
36
|
-
"/money-property-when-relationship-ends/tax",
|
|
37
|
-
"/visas-when-you-separate-or-divorce/apply-stay-uk",
|
|
38
|
-
"/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-registered",
|
|
39
|
-
"/stay-in-home-during-separation-or-divorce/apply-if-the-property-is-unregistered"
|
|
40
|
-
],
|
|
41
|
-
"tasklist": {
|
|
42
|
-
"groups": [
|
|
43
|
-
[
|
|
44
|
-
{
|
|
45
|
-
"title": "Get support and advice",
|
|
46
|
-
"optional": true,
|
|
47
|
-
"contents": [
|
|
48
|
-
{
|
|
49
|
-
"type": "paragraph",
|
|
50
|
-
"text": "You can get support and advice to help you deal with disputes and emotional stress."
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"type": "list",
|
|
54
|
-
"contents": [
|
|
55
|
-
{
|
|
56
|
-
"href": "https://www.relate.org.uk/relationship-help/help-separation-and-divorce",
|
|
57
|
-
"text": "Get advice from Relate"
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"href": "http://www.counselling-directory.org.uk/adv-search.html",
|
|
61
|
-
"text": "Find a counsellor",
|
|
62
|
-
"context": "£35 to £60 per session"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"href": "https://www.samaritans.org/how-we-can-help-you/contact-us",
|
|
66
|
-
"text": "Contact the Samaritans if you need to speak to someone urgently"
|
|
67
|
-
}
|
|
68
|
-
]
|
|
69
|
-
}
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
[
|
|
74
|
-
{
|
|
75
|
-
"title": "Check if you can get divorced",
|
|
76
|
-
"contents": [
|
|
77
|
-
{
|
|
78
|
-
"type": "paragraph",
|
|
79
|
-
"text": "Your marriage must meet certain legal requirements for you to be able to get a divorce."
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"type": "list",
|
|
83
|
-
"style": "required",
|
|
84
|
-
"contents": [
|
|
85
|
-
{
|
|
86
|
-
"href": "/divorce",
|
|
87
|
-
"text": "Check you can get a divorce"
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
[
|
|
95
|
-
{
|
|
96
|
-
"title": "Make arrangements for your children, money and property",
|
|
97
|
-
"optional": true,
|
|
98
|
-
"contents": [
|
|
99
|
-
{
|
|
100
|
-
"type": "paragraph",
|
|
101
|
-
"text": "You should try to agree the arrangements for looking after your children and work out any money or property issues before you start your divorce."
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"type": "list",
|
|
105
|
-
"style": "required",
|
|
106
|
-
"contents": [
|
|
107
|
-
{
|
|
108
|
-
"href": "/looking-after-children-divorce",
|
|
109
|
-
"text": "Make arrangements for your children"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"href": "/money-property-when-relationship-ends",
|
|
113
|
-
"text": "Divide your money and property"
|
|
114
|
-
}
|
|
115
|
-
]
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"type": "paragraph",
|
|
119
|
-
"text": "You should also check if your divorce will affect:"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"type": "list",
|
|
123
|
-
"style": "choice",
|
|
124
|
-
"contents": [
|
|
125
|
-
{
|
|
126
|
-
"href": "/benefits-calculators",
|
|
127
|
-
"text": "benefits you're eligible for"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"href": "/report-benefits-change-circumstances",
|
|
131
|
-
"text": "benefits you already receive"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"href": "/contact-pension-service",
|
|
135
|
-
"text": "your State Pension"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"href": "/visas-when-you-separate-or-divorce",
|
|
139
|
-
"text": "your UK visa status"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"href": "/stay-in-home-during-separation-or-divorce",
|
|
143
|
-
"text": "whether you can live in your current home"
|
|
144
|
-
}
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
]
|
|
148
|
-
}
|
|
149
|
-
],
|
|
150
|
-
[
|
|
151
|
-
{
|
|
152
|
-
"title": "File for divorce",
|
|
153
|
-
"contents": [
|
|
154
|
-
{
|
|
155
|
-
"type": "paragraph",
|
|
156
|
-
"text": "You need to fill in a divorce petition form."
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
"type": "list",
|
|
160
|
-
"style": "required",
|
|
161
|
-
"contents": [
|
|
162
|
-
{
|
|
163
|
-
"href": "/divorce/file-for-divorce",
|
|
164
|
-
"text": "How to start the divorce process"
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"href": "/divorce/grounds-for-divorce",
|
|
168
|
-
"text": "Check the reasons you can get a divorce (the 'grounds for divorce')"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=1115",
|
|
172
|
-
"text": "Fill in the divorce petition form"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"href": "/divorce/file-for-divorce",
|
|
176
|
-
"text": "Pay the court fee",
|
|
177
|
-
"context": "£550"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"href": "/get-help-with-court-fees",
|
|
181
|
-
"text": "Get help with court fees"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"href": "https://courttribunalfinder.service.gov.uk/search/postcode?aol=Divorce&spoe=start",
|
|
185
|
-
"text": "Send copies of the form to your nearest divorce centre"
|
|
186
|
-
}
|
|
187
|
-
]
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"type": "paragraph",
|
|
191
|
-
"text": "Your husband or wife will receive a copy of the divorce petition. When they respond, you'll be told what you need to do next."
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"type": "paragraph",
|
|
195
|
-
"text": "You might need to get legal advice if they disagree with the petition."
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"type": "list",
|
|
199
|
-
"style": "required",
|
|
200
|
-
"contents": [
|
|
201
|
-
{
|
|
202
|
-
"href": "/find-a-legal-adviser",
|
|
203
|
-
"text": "Get legal advice"
|
|
204
|
-
}
|
|
205
|
-
]
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"type": "paragraph",
|
|
209
|
-
"text": "If they don't respond, you'll need to prove that they've received the petition. For example, by using a bailiff to deliver it to them."
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"type": "substep",
|
|
213
|
-
"optional": true
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"type": "list",
|
|
217
|
-
"contents": [
|
|
218
|
-
{
|
|
219
|
-
"href": "/divorce-missing-husband-wife",
|
|
220
|
-
"text": "Find your husband or wife’s address",
|
|
221
|
-
"context": "£0 to £150"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"href": "/divorce/if-your-husband-or-wife-lacks-mental-capacity",
|
|
225
|
-
"text": "Get help if your husband or wife can’t make decisions for themselves"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"href": "/divorce-missing-husband-wife",
|
|
229
|
-
"text": "End the marriage because you think your husband or wife is dead",
|
|
230
|
-
"context": "£365"
|
|
231
|
-
}
|
|
232
|
-
]
|
|
233
|
-
}
|
|
234
|
-
]
|
|
235
|
-
}
|
|
236
|
-
],
|
|
237
|
-
[
|
|
238
|
-
{
|
|
239
|
-
"title": "Send the court more details about your divorce",
|
|
240
|
-
"contents": [
|
|
241
|
-
{
|
|
242
|
-
"type": "paragraph",
|
|
243
|
-
"text": "The court will tell you if you can continue with your divorce petition. You'll need to apply for a document called a 'decree nisi'. You can give more information about why the marriage has broken down."
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"type": "list",
|
|
247
|
-
"style": "required",
|
|
248
|
-
"contents": [
|
|
249
|
-
{
|
|
250
|
-
"href": "/divorce/apply-for-decree-nisi",
|
|
251
|
-
"text": "Why you need a decree nisi"
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=154",
|
|
255
|
-
"text": "Fill in the application form"
|
|
256
|
-
}
|
|
257
|
-
]
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"type": "paragraph",
|
|
261
|
-
"text": "You need to say why you're getting a divorce. Choose the form that matches what you put in the divorce petition:"
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"type": "list",
|
|
265
|
-
"style": "choice",
|
|
266
|
-
"contents": [
|
|
267
|
-
{
|
|
268
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=144",
|
|
269
|
-
"text": "unreasonable behaviour"
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=142",
|
|
273
|
-
"text": "adultery"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=146",
|
|
277
|
-
"text": "desertion"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=149",
|
|
281
|
-
"text": "2 years' separation"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=150",
|
|
285
|
-
"text": "5 years' separation"
|
|
286
|
-
}
|
|
287
|
-
]
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"type": "paragraph",
|
|
291
|
-
"text": "Send the forms to the court. "
|
|
292
|
-
}
|
|
293
|
-
]
|
|
294
|
-
}
|
|
295
|
-
],
|
|
296
|
-
[
|
|
297
|
-
{
|
|
298
|
-
"title": "Finalise your divorce",
|
|
299
|
-
"contents": [
|
|
300
|
-
{
|
|
301
|
-
"type": "paragraph",
|
|
302
|
-
"text": "Once you, your husband or wife, and the court all agree, you can apply for the final document to end your marriage. This is called a 'decree absolute'. You can do this 6 weeks after you receive the decree nisi."
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"type": "paragraph",
|
|
306
|
-
"text": "If you want a legally-binding arrangement for dividing money and property you must apply to the court for this before you apply for a decree absolute."
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"type": "list",
|
|
310
|
-
"style": "required",
|
|
311
|
-
"contents": [
|
|
312
|
-
{
|
|
313
|
-
"href": "/divorce/apply-for-a-decree-absolute",
|
|
314
|
-
"text": "Why you need a decree absolute"
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"href": "http://hmctsformfinder.justice.gov.uk/HMCTS/GetForm.do?court_forms_id=1114",
|
|
318
|
-
"text": "Fill in the decree absolute application form"
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
]
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"type": "paragraph",
|
|
325
|
-
"text": "Send the forms to the court. Once it's approved, they'll send you both a copy of the decree absolute and your divorce will be complete."
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
]
|
|
329
|
-
}
|
|
330
|
-
]
|
|
331
|
-
]
|
|
332
|
-
}
|
|
333
|
-
}
|