Skip to content
Snippets Groups Projects
Verified Commit 54041afa authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Install django_select2.

parent e662c8ab
No related branches found
No related tags found
1 merge request!58Resolve "Use Select2 everywhere"
......@@ -64,6 +64,7 @@ INSTALLED_APPS = [
'phonenumber_field',
'debug_toolbar',
'contact_form',
'django_select2',
'biscuit.core',
'impersonate',
]
......
......@@ -31,7 +31,8 @@ urlpatterns = [
path('maintenance-mode/', include('maintenance_mode.urls')),
path('contact/', include('contact_form.urls')),
path('impersonate/', include('impersonate.urls')),
path('__i18n__/', include('django.conf.urls.i18n'))
path('__i18n__/', include('django.conf.urls.i18n')),
path('select2/', include('django_select2.urls'))
]
# Serve javascript-common if in development
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment