|
|
|
@ -11,6 +11,10 @@ https://docs.djangoproject.com/en/5.1/ref/settings/
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from import_export.formats.base_formats import CSV
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IMPORT_FORMATS = [CSV]
|
|
|
|
|
|
|
|
EXPORT_FORMATS = [CSV]
|
|
|
|
|
|
|
|
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
|
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
|
|
@ -34,6 +38,7 @@ INSTALLED_APPS = [
|
|
|
|
#ADD_ONs
|
|
|
|
#ADD_ONs
|
|
|
|
'jazzmin',
|
|
|
|
'jazzmin',
|
|
|
|
'phonenumber_field',
|
|
|
|
'phonenumber_field',
|
|
|
|
|
|
|
|
'import_export',
|
|
|
|
|
|
|
|
|
|
|
|
#Defaul
|
|
|
|
#Defaul
|
|
|
|
'django.contrib.admin',
|
|
|
|
'django.contrib.admin',
|
|
|
|
|