From 07e3e2e9c3da9f05634a45f65723504c229f2baa Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 18 May 2022 16:23:02 +0200 Subject: Migration to Django 2.2 - many fixes - remove redondant permissions - fix missing kwargs for widget and form fields - fix default to callable for model field - quick and dirty fix for datepicker - is_authenticated() -> is_authenticated - fix registration urls - remove six usage (no more python2) --- ishtar_common/urls_registration.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ishtar_common/urls_registration.py (limited to 'ishtar_common/urls_registration.py') diff --git a/ishtar_common/urls_registration.py b/ishtar_common/urls_registration.py new file mode 100644 index 000000000..4b9e85289 --- /dev/null +++ b/ishtar_common/urls_registration.py @@ -0,0 +1,34 @@ +from django.conf.urls import include, url +from django.views.generic.base import TemplateView + +from django_registration import views + + +urlpatterns = [ + url(r'^accounts/activate/complete/$', + TemplateView.as_view( + template_name='registration/activation_complete.html' + ), + name='registration_activation_complete'), + # Activation keys get matched by \w+ instead of the more specific + # [a-fA-F0-9]{40} because a bad activation key should still get to + # the view; that way it can return a sensible "invalid key" + # message instead of a confusing 404. + url(r'^accounts/activate/(?P\w+)/$', + views.ActivationView.as_view(), + name='registration_activate'), + url(r'^accounts/register/$', + views.RegistrationView.as_view(), + name='registration_register'), + url(r'^accounts/register/complete/$', + TemplateView.as_view( + template_name='registration/registration_complete.html' + ), + name='registration_complete'), + url(r'^accounts/register/closed/$', + TemplateView.as_view( + template_name='registration/registration_closed.html' + ), + name='registration_disallowed'), + url("^accounts/", include('django.contrib.auth.urls')), +] \ No newline at end of file -- cgit v1.2.3