[Answered ]-How to make django-registration use my customized UserCreationForm and UserChangeForm?

2👍

See http://docs.b-list.org/django-registration/0.8/views.html

After creating your own registration form you can pass this form to the register view of django-registration. Look for the registration.backends.default.urls module

url(r'^register/$', register,
     {'backend': 'registration.backends.default.DefaultBackend', 
     'form_class': MyRegistrationForm},

Leave a comment