improve length error message.

closes #4.
This commit is contained in:
neingeist 2021-12-04 15:45:50 +01:00
parent ff84c8838d
commit aa30394089
2 changed files with 4 additions and 1 deletions

View file

@ -34,7 +34,9 @@ class DownloadForm(FlaskForm):
length = IntegerField('Länge',
validators=[
InputRequired(),
NumberRange(min=1, max=app.config['MAX_LENGTH'])])
NumberRange(
min=1, max=app.config['MAX_LENGTH'],
message="Länge muss zwischen %(min)s and %(max)s Minuten sein")])
submit = SubmitField('Download')

View file

@ -2,3 +2,4 @@ flask
bootstrap-flask
python-dotenv
flask-wtf >= 1.0.0
WTForms >= 3.0.0