summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-09-01 17:58:56 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:20:58 +0100
commit3b671732319aa14f194821a8f547ae280e1e0648 (patch)
treeaa16f6f20916eecc7a99d9eed661d8bd1ddf9522 /example_project
parente416f8d0702e2f3f981b50aebc08c67f7034d6a1 (diff)
downloadIshtar-3b671732319aa14f194821a8f547ae280e1e0648.tar.bz2
Ishtar-3b671732319aa14f194821a8f547ae280e1e0648.zip
Migration to Django 2.2 - missing on_delete - django.urls import reverse
Diffstat (limited to 'example_project')
-rw-r--r--example_project/settings.py2
-rw-r--r--example_project/urls.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/example_project/settings.py b/example_project/settings.py
index 53f15cc38..16a63d49a 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -154,7 +154,7 @@ ROOT_URLCONF = "example_project.urls"
AUTHENTICATION_BACKENDS = ("ishtar_common.backend.ObjectPermBackend",)
INSTALLED_APPS = [
- "registration",
+ "django_registration",
"ishtar_common",
"archaeological_files_pdl",
"archaeological_files",
diff --git a/example_project/urls.py b/example_project/urls.py
index 79645b8ae..8ccc28815 100644
--- a/example_project/urls.py
+++ b/example_project/urls.py
@@ -11,7 +11,7 @@ admin.autodiscover()
urlpatterns = [
- url(r'^accounts/', include('registration.urls')),
+ url(r'^accounts/', include('django_registration.urls')),
]