Fixes: 1) Remove deprecated Jazzmin configuration and replace with unfold dependencies; 2) Update DRF API title to use new PROJECT_NAME; 3) Fix import order and remove unused imports in core/viewsets.py; Extra: 1) Add PROJECT_NAME to base settings; 2) Update INSTALLED_APPS to include unfold-related apps; 3) Clean up unused config references.
11 lines
392 B
Python
11 lines
392 B
Python
"""
|
|
Deprecated: Jazzmin settings (removed in favor of django-unfold).
|
|
|
|
This file is intentionally left as a stub to avoid accidental imports.
|
|
If imported, raise an explicit error guiding developers to Unfold.
|
|
"""
|
|
|
|
raise ImportError(
|
|
"Jazzmin configuration has been removed. Use django-unfold instead. "
|
|
"See evibes/settings/unfold.py and INSTALLED_APPS in evibes/settings/base.py."
|
|
)
|