Darkmode hinzugefügt

This commit is contained in:
Erik Thiele
2026-05-19 22:42:53 +02:00
parent 3b89f9c609
commit df98b6d57f
4 changed files with 208 additions and 6 deletions

6
app.py
View File

@@ -12,7 +12,7 @@ from werkzeug.security import check_password_hash, generate_password_hash
app = Flask(__name__)
app.config["SECRET_KEY"] = "dev-secret-key"
APP_VERSION = "1.5.0"
APP_VERSION = "2.1.0"
DATABASE = Path(__file__).with_name("inventory.db")
LOGFILE = Path(__file__).with_name("inventory.log")
@@ -40,8 +40,8 @@ PRINT_DESCRIPTIONS = {
}
INPUT_PLACEHOLDERS = {
"chip": "z. B. CHIP-1001",
"parking_card": "z. B. PARK-2001",
"chip": "z. B. 100",
"parking_card": "z. B. 200199887755123",
"pool_vehicle": "z. B. GZ-CC-123",
}