From 82aea5ce3c72ab84eb2e95c4d390e878ef9ba61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <tomas@imaniti.org> Date: Sun, 25 Feb 2024 14:41:37 +0100 Subject: [PATCH] fix form max --- timer/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer/forms.py b/timer/forms.py index 4356967..7badc6d 100644 --- a/timer/forms.py +++ b/timer/forms.py @@ -11,7 +11,7 @@ class TimeOnlyForm(forms.Form): label="Minuty", validators=[ MinValueValidator(limit_value=0), - MaxValueValidator(limit_value=60), + MaxValueValidator(limit_value=360), ], ) -- GitLab