I want django-registration (version 0.8) to use my custom form rather than the default one. However, I want to continue to use the default django-registration view. What should the rest of the line below look like to achieve this?
(r'^accounts/register'...),
I've tried this below but get a syntax error:
(r'^accounts/register/$',
'registration.views.register',
{'form_class': 'MyRegistrationForm'}, name='registration_register'),
And when I try this one below I get register() takes at least 2 non-keyword arguments (1 given)
(r'^accounts/register/$',
'registration.views.register',
{'form_class':'MyRegistrationForm'}),