From 47f4b703839371f45409d6708411addcb076c27e Mon Sep 17 00:00:00 2001 From: monodo Date: Thu, 7 Sep 2023 16:30:11 +0200 Subject: [PATCH] install select 2 --- geocity/settings.py | 1 + geocity/urls.py | 1 + 2 files changed, 2 insertions(+) diff --git a/geocity/settings.py b/geocity/settings.py index 881827b2b..7edc6bd6f 100644 --- a/geocity/settings.py +++ b/geocity/settings.py @@ -165,6 +165,7 @@ "jazzmin", "jsoneditor", "django_jsonform", + 'django_select2', # django contrib apps "django.contrib.admin", "django.contrib.auth", diff --git a/geocity/urls.py b/geocity/urls.py index 4a1e9114e..5ff193985 100644 --- a/geocity/urls.py +++ b/geocity/urls.py @@ -47,6 +47,7 @@ path("oauth/", include("oauth2_provider.urls", namespace="oauth2_provider")), path("admin/", admin.site.urls), path("accounts/social/", include("allauth.socialaccount.urls")), + path("select2/", include("django_select2.urls")), ] if settings.ENABLE_2FA: