diff options
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 |
commit | eec69099f0c6dfdcef5acc15d57dadc7cd04813b (patch) | |
tree | aa16f6f20916eecc7a99d9eed661d8bd1ddf9522 /example_project | |
parent | 12ee58b40c9ac73ee42ab08a18246399485adb9a (diff) | |
download | Ishtar-eec69099f0c6dfdcef5acc15d57dadc7cd04813b.tar.bz2 Ishtar-eec69099f0c6dfdcef5acc15d57dadc7cd04813b.zip |
Migration to Django 2.2 - missing on_delete - django.urls import reverse
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 2 | ||||
-rw-r--r-- | example_project/urls.py | 2 |
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')), ] |