Fix bug with description on services
The service description was lost on any input error in the forms for create and edit.
This commit is contained in:
parent
346723ae2d
commit
ae6dfa8ae6
|
@ -34,6 +34,9 @@ class CreateServiceForm(FlaskForm):
|
||||||
else:
|
else:
|
||||||
self.costs.default = 0
|
self.costs.default = 0
|
||||||
|
|
||||||
|
if self.description.data:
|
||||||
|
self.description.default = self.description.data
|
||||||
|
|
||||||
|
|
||||||
class DeleteServiceForm(FlaskForm):
|
class DeleteServiceForm(FlaskForm):
|
||||||
submit = SubmitField(label='Really delete this service!')
|
submit = SubmitField(label='Really delete this service!')
|
||||||
|
@ -67,4 +70,6 @@ class EditServiceForm(FlaskForm):
|
||||||
else:
|
else:
|
||||||
self.costs.default = 0
|
self.costs.default = 0
|
||||||
|
|
||||||
|
if self.description.data:
|
||||||
|
self.description.default = self.description.data
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue