fix: Updated Store for Product Categories, Products, and Product Permutations pages for tweaked architecture for controllers, datastores, and python data objects.

This commit is contained in:
2024-10-14 11:42:51 +01:00
parent f6a6966ce4
commit 15d9a3a76f
14 changed files with 25 additions and 18 deletions

View File

@@ -22,7 +22,7 @@ from flask_wtf.recaptcha import RecaptchaField
class Filters_Product(FlaskForm):
id_category = SelectField('Category', validators=[Optional()], choices=[('', 'All')])
id_category = SelectField('Category', validators=[Optional()], choices=[('', 'All')], default='')
is_not_empty = BooleanField('Not empty only?')
active = BooleanField("Active only?", default = True)
@classmethod