Comments on: Setting up Django Registration http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/ At the core of all well-founded belief lies belief that is unfounded - Wittgenstein Mon, 06 Jun 2016 16:54:00 +0000 hourly 1 https://wordpress.org/?v=5.2.11 By: Flavio http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-66267 Mon, 06 Jun 2016 16:54:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-66267 Hi, does anyone have a clue on how to implement two step authentication with this module ?

]]>
By: Mikele http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-43889 Mon, 04 Aug 2014 11:23:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-43889 thanks Dylan that’s a very good point

]]>
By: Dylan Ross http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-43738 Sun, 03 Aug 2014 10:19:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-43738 I thought I should point out that the login.html template included in this tutorial includes the line :

{% csrf_token %}

this means the default behaviour is to redirect to / following successful login, not to the url specified by LOGIN_REDIRECT_URL in urls.py, which stumped me for a while . To redirect to LOGIN_REDIRECT_URL, just remove |default:”/” :

{% csrf_token %}

Hopefully I’ll have saved someone from a bit of head scratching.

]]>
By: face_facts http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-33419 Fri, 25 Apr 2014 07:06:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-33419 Be careful when cutting-and-pasting the code here. The email config in section 7 uses one / double quote in two places where there should be two / single quotes. Python syntax error.

]]>
By: Ham Kibz http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-21011 Sun, 17 Nov 2013 14:12:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-21011 Thanks for the post it will help me roll out my new site soon

]]>
By: rakesh manohar http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-20144 Sun, 03 Nov 2013 19:24:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-20144 Brilliant tutorial, Got it working like a charm. Awesome thanks.

]]>
By: Mrinmoy Das http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-12091 Wed, 03 Jul 2013 06:33:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-12091 The current URL, accounts/, didn’t match any of these.

^accounts/

^activate/complete/$
[name=’registration_activation_complete’]

and so on.
any solution?
i am just a noob :(

]]>
By: Designer023 http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-11513 Fri, 21 Jun 2013 15:20:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-11513 Great tutorial. Up and running in no time, Thanks.

]]>
By: Sajanjoseph http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-3374 Wed, 30 Jan 2013 13:47:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-3374 In your activate.html ,there is a line {% if account %} .Where does the account object come from?

]]>
By: Frank V http://www.michelepasin.org/blog/2011/01/14/setting-up-django-registration/comment-page-1/#comment-2932 Wed, 16 Jan 2013 15:10:00 +0000 http://www.michelepasin.org/blog/?p=1057#comment-2932 This is a really great tutorial; thanks for putting it together! I’ve followed it and got everything working. I have one question:

Is there a way to set it up so that once the user clicks the confirmation link and goes to the website, the user is logged in as a result? Right now, it seems that the confirmation activates the user, but then the user still has to click login and fill in his login details.

Thanks

]]>