Re: contrib.auth.views - n00b question

2010-07-07 Thread reduxdj
Chris, You led me down the right track, the problem being my registration app was in two paths at the same time, I guess there was some craziness going on with the errors. Thanks for your time. I hate being new at Django, I want to be seasoned. Thanks, Patrick On Jul 7, 9:45 am, Chris Lawlor

Re: contrib.auth.views - n00b question

2010-07-07 Thread Chris Lawlor
The 'from gather import login, logout' line at the bottom of the stack trace looks pretty suspicious. Could you post the code to 'gather' and explain how your files are laid out? On Jul 7, 12:51 am, reduxdj wrote: > Thanks, It looks like still have this nagging n00b

Re: contrib.auth.views - n00b question

2010-07-06 Thread reduxdj
Thanks, It looks like still have this nagging n00b issue, the problem seems to be with the way things configured, none of my templates for my installed apps are working correctly, for instance, my django admin isn't running out of the box, i always get the error no module named LOGIN, as below:

Re: contrib.auth.views - n00b question

2010-07-06 Thread Chris Lawlor
You probably don't want to reference the login view to /accounts. You probably mean to do this: (r'^accounts/', include ('django.contrib.auth.urls'), That will map /accounts/login to django.contrib.views.login, /accounts/ logout to django.contrib.views.logout, etc. In general, when using an

Re: contrib.auth.views - n00b question

2010-07-06 Thread Tom Evans
On Tue, Jul 6, 2010 at 2:00 PM, reduxdj wrote: > Hi, > > I have an issue where i am including contrib.auth into my URLs, > however, I get this error: > > my url pattern: > > (r'^accounts/', include('django.contrib.auth.views.login')), > django.contrib.auth.views.login

contrib.auth.views - n00b question

2010-07-06 Thread reduxdj
Hi, I have an issue where i am including contrib.auth into my URLs, however, I get this error: my url pattern: (r'^accounts/', include('django.contrib.auth.views.login')), Could this be an issue with my path, or python path? Thanks for your help, as always, learning something new - it's easy