Add radio button and convert from to WTForm

This commit is contained in:
David McDonald
2019-10-09 11:23:02 +01:00
parent 9e781177fd
commit fdf74572b9
3 changed files with 21 additions and 3 deletions

View File

@@ -765,6 +765,19 @@ class LetterTemplatePostageForm(StripWhitespaceForm):
)
class LetterUploadPostageForm(StripWhitespaceForm):
postage = RadioField(
'Choose the postage for this letter',
choices=[
('first', 'First class post'),
('second', 'Second class post'),
],
default='second',
validators=[DataRequired()]
)
file_id = HiddenField()
class ForgotPasswordForm(StripWhitespaceForm):
email_address = email_address(gov_user=False)