changeset 364:9c301dc1114e draft default tip

Update Django's registration modle import
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Tue, 24 Apr 2012 13:22:45 -0400
parents 7d64cbe0ef62
children
files urls.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/urls.py
+++ b/urls.py
@@ -32,7 +32,7 @@
   (r'^accounts/logout/$', 'django.contrib.auth.views.logout',
     {'next_page' : '/'}),  # redirect to '/' instead of login page
   # django-registration
-  (r'^accounts/', include('registration.backends.default.urls')),
+  (r'^accounts/', include('registration.urls')),
   (r'^accounts/', include('django.contrib.auth.urls')),
 )