feat: automatic product counters edition

This commit is contained in:
imperosol
2025-09-14 21:48:16 +02:00
parent ea03786da8
commit d9f70a28ef
5 changed files with 159 additions and 81 deletions

View File

@@ -153,10 +153,8 @@ form {
margin-bottom: 1rem;
}
.row {
label {
margin: unset;
}
.row > label {
margin: unset;
}
// ------------- LABEL

View File

@@ -115,7 +115,7 @@ class SelectUser(TextInput):
def validate_future_timestamp(value: date | datetime):
if value <= now():
raise ValueError(_("Ensure this timestamp is set in the future"))
raise ValidationError(_("Ensure this timestamp is set in the future"))
class FutureDateTimeField(forms.DateTimeField):