Hi!

Since I update my django-registration installation to be able to use
signals, I lost my templates to change password, reset password... There is
now the default django admin templates to do that. How can I use again my
templates?

Do you need some paste or more info?

This is my urls.py, it is imported in the project as: (r'^accounts/',
include('networking.urls')),

from django.conf.urls.defaults import *
from registration.views import register
from views import show_business, get_qrcode
from forms import edit_profile, RegistrationFormTOSAndUniqueEmail,
edit_or_delete_business, add_business, initial_setup
from django.views.generic.simple import redirect_to

urlpatterns = patterns('',
    # django-registration
    url(r'^register/$',
        register,
        {'backend': 'registration.backends.default.DefaultBackend',
'form_class': RegistrationFormTOSAndUniqueEmail },
        name='registration_register'),
    #(r'^activate/complete/$', redirect_to, {'url': '/'}),
    (r'^profile/$', redirect_to, {'url': '/'}),
    url(r'^profile/edit$', edit_profile, name='edit_profile'),
    (r'^', include('registration.backends.default.urls')),

)

-- 
Please, don't send me files with extensions: .doc, .docx, .xls, .xlsx, .ppt
and/or .pptx
http://mirblu.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to