categorylanri import qilish qoshildi

This commit is contained in:
Husanjonazamov
2026-03-26 14:23:51 +05:00
parent 1c4155299d
commit 73ae84768f
5 changed files with 149 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ LOGGING = {
"daily_rotating_file": {
"level": "INFO",
"class": "logging.handlers.TimedRotatingFileHandler",
"filename": LOG_DIR / "django.log",
"filename": str(LOG_DIR / "django.log"),
"when": "midnight",
"backupCount": 30,
"formatter": "verbose",
@@ -39,7 +39,7 @@ LOGGING = {
"error_file": {
"level": "ERROR",
"class": "logging.handlers.TimedRotatingFileHandler",
"filename": LOG_DIR / "django_error.log",
"filename": str(LOG_DIR / "django_error.log"),
"when": "midnight",
"backupCount": 30,
"formatter": "verbose",

View File

@@ -90,6 +90,6 @@ UNFOLD = {
"SIDEBAR": {
"show_search": True,
"show_all_applications": True,
"navigation": navigation.PAGES,
"navigation": navigation.PAGES,
},
}