Convert radios on add org page

Changes OrganisationCrownStatusForm.crown_status.

This also effects NewOrganisationForm, which
inherits from OrganisationCrownStatusForm.

Because of that this commit also updates the
template used for the edit org crown status page,
which uses NewOrganisationForm for its form.
This commit is contained in:
Tom Byers
2020-06-26 17:47:16 +01:00
parent 0cdbb850aa
commit b1d0d216e0
4 changed files with 8 additions and 12 deletions

View File

@@ -1168,10 +1168,8 @@ class OrganisationOrganisationTypeForm(StripWhitespaceForm):
class OrganisationCrownStatusForm(StripWhitespaceForm):
crown_status = RadioField(
(
'Is this organisation a crown body?'
),
crown_status = GovukRadiosField(
'Is this organisation a crown body?',
choices=[
('crown', 'Yes'),
('non-crown', 'No'),