# Zeiterfassung # Quasi-Konstanten import os app_title = "Zeiterfassung" app_version = ("0.0.0") # Standardpfade scriptpath = os.path.dirname(os.path.abspath(__file__)) userfolder = "users" # Dateinamen usersettingsfilename = "settings.json" photofilename = "photo.jpg" # Status status_in = "eingestempelt" status_out = "ausgestempelt" # Standardadmin Settings: standard_adminsettings = { "admin_user": "admin", "admin_password": "8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918", "port": "8090", "secret": "ftgzuhjikg,mt5jn46uzer8sfi9okrmtzjhndfierko5zltjhdgise", "holidays": { } } # Standard User Settings: standard_usersettings = { "username": "default", "fullname": "Standardbenutzer", "password": "37a8eec1ce19687d132fe29051dca629d164e2c4958ba141d5f4133a33f0688f", "workhours": { } } # Abesenheiten absence_entries = {"U": { "name": "Urlaub", "color": "green", "text-color": "black"}, "K": { "name": "Krankheit", "color": "red", "text-color": "white"}, "KK": { "name": "Krankheit Kind", "color": "orange", "text-color": "black"}, "UU": { "name": "Urlaub aus Überstunden", "color": "green", "text-color": "black"}, "F": { "name": "Fortbildung", "color": "black", "text-color": "white"}, "EZ": { "name": "Elternzeit", "color": "purple", "text-color": "white"} }