summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
Diffstat (limited to 'example_project')
-rw-r--r--example_project/settings.py1
-rw-r--r--example_project/urls.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py
index 16a63d49a..b98158b10 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -162,7 +162,6 @@ INSTALLED_APPS = [
"archaeological_context_records",
"archaeological_warehouse",
"archaeological_finds",
- "ajax_select",
"compressor",
"rest_framework",
"rest_framework.authtoken",
diff --git a/example_project/urls.py b/example_project/urls.py
index 5eff7a9c4..40e5c36db 100644
--- a/example_project/urls.py
+++ b/example_project/urls.py
@@ -3,7 +3,6 @@ from django.conf.urls import include, url
from django.contrib import admin
from ishtar_common.apps import admin_site
-from ajax_select import urls as ajax_select_urls
from ishtar_common.views import index
from ishtar_common.urls_registration import urlpatterns
@@ -22,7 +21,6 @@ for app in APP_LIST:
urlpatterns += [
url(r'^admin/', include(admin_site.urls[:2])),
- url(r'^ajax-select/', include(ajax_select_urls)),
url(r'', include('ishtar_common.urls')),
url(r'^$', index, name='start'),
]