mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-08 23:40:58 +00:00
16 lines
429 B
Python
16 lines
429 B
Python
from .base import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
try:
|
|
INSTALLED_APPS.remove(
|
|
"admin_tools"
|
|
) if "admin_tools" in INSTALLED_APPS else None
|
|
INSTALLED_APPS.remove(
|
|
"admin_tools.menu"
|
|
) if "admin_tools.menu" in INSTALLED_APPS else None
|
|
INSTALLED_APPS.remove(
|
|
"admin_tools.dashboard"
|
|
) if "admin_tools.dashboard" in INSTALLED_APPS else None
|
|
except Exception as err:
|
|
pass
|