I'm using django-registration which somehow stopped working the way it should work. I'm completely lost on this and have no idea where to start looking for the error.

So what happens is, that whenever a user clicks on the activation link, he gets the activation.html template. Which should only be shown when there was an error.

But actually there is no error. The user gets activated and can log in.

Any thoughts on this will be greatly appreciated.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

First of all, the subject of your post and the actual description are conflicting. The subject says django-registration always fails to activate the user, but then in your description you say the user gets activated and can log in. Which is it?

Secondly, clicking on the activation link should always send the user to activate.html. You will have a variable called account on that page. If the activation was successful, account will be populated with the User object, otherwise it will be False.

link|improve this answer
You are right, i fixed the title. But I think you are wrong with your answer. At least the documentation: docs.b-list.org/django-registration/0.8/views.html says that "On unsuccessful activation, will render the template registration/activate.html to display an error message; to override thise, pass the argument template_name (see below)." – Kai Feb 7 '11 at 1:27
Indeed. In the docs: registration/activate.html: Used if account activation fails. – Yuji Tomita Feb 7 '11 at 1:44
Ah, so you're using version 0.8 which apparently went through a complete rewrite. I'm still using an older version which is what I was basing my answer on. Sorry about that. – Abid A Feb 7 '11 at 1:47
I was using 0.7 (latest Version in pypi) by accident. Now upgraded back to the latest version from bitbucket, but I still have the same problem. – Kai Feb 7 '11 at 13:04
Beeing out of options, I just changed my template. Either the docs are wrong, or I messed something else up. Doesn't really matter because it is working now. :) – Kai Feb 10 '11 at 10:16
show 1 more comment
feedback

There is a big difference between 0.7 and 0.8:

in 0.7:

registration/activate.html is displayed when a user attempts to activate his/her account.

in 0.8

registration/activate.html

Used if account activation fails.

link|improve this answer
well that's misleading isn't it! lol – Tim Abell Apr 19 '11 at 17:48
oh and I can't find the nicely formatted online docs for 0.7, but 0.8 is only in alpha. hrmph. – Tim Abell Apr 19 '11 at 18:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.