mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
Fix wrong character limit on review form
This commit is contained in:
parent
74371d3fcb
commit
054dfa4cbd
@ -33,7 +33,7 @@ def list_reviews():
|
|||||||
|
|
||||||
class ReviewForm(FlaskForm):
|
class ReviewForm(FlaskForm):
|
||||||
title = StringField("Title", [InputRequired(), Length(3,100)])
|
title = StringField("Title", [InputRequired(), Length(3,100)])
|
||||||
comment = TextAreaField("Comment", [InputRequired(), Length(10, 500)])
|
comment = TextAreaField("Comment", [InputRequired(), Length(10, 2000)])
|
||||||
recommends = RadioField("Private", [InputRequired()], choices=[("yes", "Yes"), ("no", "No")])
|
recommends = RadioField("Private", [InputRequired()], choices=[("yes", "Yes"), ("no", "No")])
|
||||||
submit = SubmitField("Save")
|
submit = SubmitField("Save")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user