every one ,, I am using
django-registration-redux (1.4)
for my django registration(django 1.8),,however ,,when never I registered th
In django-registration-redux RegistrationView has get_success_url defined as this.
def get_success_url(self, user=None):
"""
Use the new user when constructing success_url.
"""
return super(RegistrationView, self).get_success_url()
Thus it seems that only two parameters will be passed to that funciton. Yet in your subclass of if you have
def get_success_url(self, request, user):
# the named URL that we want to redirect to after # successful registration
return ('home')
Which has an extra request parameter which you are not going to recieve. hence the error.