Remove choosing postage from edit template content flow

This commit is contained in:
Pea Tyczynska
2019-01-29 16:39:47 +00:00
parent e85678fa69
commit 20ae200de9
5 changed files with 4 additions and 35 deletions

View File

@@ -447,17 +447,6 @@ class EmailTemplateForm(BaseTemplateForm):
class LetterTemplateForm(EmailTemplateForm):
postage = RadioField(
'Choose postage',
choices=[
('first', 'First class'),
('second', 'Second class'),
('None', "Service default"),
],
validators=[DataRequired()],
default='None'
)
subject = TextAreaField(
u'Main heading',
validators=[DataRequired(message="Cant be empty")])