Shelter PMS fully functional
This commit is contained in:
@@ -41,9 +41,9 @@ INSTALLED_APPS = [
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'bot',
|
||||
'pms_integration',
|
||||
'hotels',
|
||||
'users',
|
||||
'pms_integration'
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
@@ -112,6 +112,19 @@ AUTH_PASSWORD_VALIDATORS = [
|
||||
},
|
||||
]
|
||||
|
||||
LOGGING = {
|
||||
'version': 1,
|
||||
'disable_existing_loggers': False,
|
||||
'handlers': {
|
||||
'console': {
|
||||
'class': 'logging.StreamHandler',
|
||||
},
|
||||
},
|
||||
'root': {
|
||||
'handlers': ['console'],
|
||||
'level': 'WARNING',
|
||||
},
|
||||
}
|
||||
|
||||
# Internationalization
|
||||
# https://docs.djangoproject.com/en/5.1/topics/i18n/
|
||||
@@ -146,6 +159,7 @@ JAZZMIN_SETTINGS = {
|
||||
"welcome_sign": "Welcome to Hotel Management System",
|
||||
"show_sidebar": True,
|
||||
"navigation_expanded": True,
|
||||
"hide_models": ["users", "guests"],
|
||||
"site_logo": None, # Путь к логотипу, например "static/images/logo.png"
|
||||
"site_logo_classes": "img-circle", # Классы CSS для логотипа
|
||||
"site_icon": None, # Иконка сайта (favicon), например "static/images/favicon.ico"
|
||||
|
||||
Reference in New Issue
Block a user