diff --git a/crewpulse/settings.py b/crewpulse/settings.py index 9d1f25a..3028dbb 100644 --- a/crewpulse/settings.py +++ b/crewpulse/settings.py @@ -11,6 +11,10 @@ https://docs.djangoproject.com/en/5.1/ref/settings/ """ 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'. BASE_DIR = Path(__file__).resolve().parent.parent @@ -34,6 +38,7 @@ INSTALLED_APPS = [ #ADD_ONs 'jazzmin', 'phonenumber_field', + 'import_export', #Defaul 'django.contrib.admin',