implement custom datetime and date widgets based on customer requirements

This commit is contained in:
2026-07-03 10:32:39 +02:00
parent 1d353d863e
commit ae48f72500
3 changed files with 461 additions and 6 deletions
+4
View File
@@ -1,6 +1,7 @@
from __future__ import annotations
import os
import zoneinfo
from pathlib import Path
from typing import Final
@@ -25,3 +26,6 @@ class Config:
PATH_LOGGING: Path = BASE_PATH / os.getenv("DOPT_PATH_LOGGING", "data/d-opt.log")
LOG_FILENAME: str = "dopt.log"
ALEMBIC_PATH: Path = BASE_PATH / os.getenv("DOPT_ALEMBIC_BASE", "python/alembic")
TIMEZONE_CEST: Final[zoneinfo.ZoneInfo] = zoneinfo.ZoneInfo("Europe/Berlin")