forked from CGM_Public/pretix_original
Restrict length of item name in quick setup
PRETIXEU-21V
This commit is contained in:
@@ -1250,7 +1250,7 @@ class QuickSetupForm(I18nForm):
|
|||||||
|
|
||||||
class QuickSetupProductForm(I18nForm):
|
class QuickSetupProductForm(I18nForm):
|
||||||
name = I18nFormField(
|
name = I18nFormField(
|
||||||
max_length=255,
|
max_length=200, # Max length of Quota.name
|
||||||
label=_("Product name"),
|
label=_("Product name"),
|
||||||
widget=I18nTextInput
|
widget=I18nTextInput
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user