Skip to content

Commit 2864655

Browse files
committed
PPHA-483: Add further education option to EducationResponse
1 parent 533a376 commit 2864655

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

lung_cancer_screening/questions/forms/education_form.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ def __init__(self, *args, **kwargs):
3434
EducationValues.A_LEVELS,
3535
"Previously Higher School Certificate (HSC)",
3636
)
37+
education_field.add_hint_for_choice(
38+
EducationValues.FURTHER_EDUCATION,
39+
"For example, apprenticeships or Higher National Certificates (HNC)",
40+
)
3741
education_field.add_hint_for_choice(
3842
EducationValues.BACHELORS_DEGREE,
3943
"A university degree, also known as an undergraduate degree",

lung_cancer_screening/questions/models/education_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class EducationValues(models.TextChoices):
1010
FINISHED_SCHOOL_BEFORE_15 = "X", "I finished school before the age of 15"
1111
GCSES = "G", "GCSEs"
1212
A_LEVELS = "A", "A-levels"
13+
FURTHER_EDUCATION = "F", "Further education"
1314
BACHELORS_DEGREE = "B", "Bachelor's degree"
1415
POSTGRADUATE_DEGREE = "P", "Postgraduate degree"
1516
PREFER_NOT_TO_SAY = "N", "I'd prefer not to say"

0 commit comments

Comments
 (0)