regular_costs #5
|
@ -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