Re: Fixing Missing Template Error

2010-09-29 Thread octopusgrabbus
Thanks. That worked. On Sep 28, 7:35 pm, octopusgrabbus wrote: > I am getting a Missing Template exception > > Exception Type:         TemplateDoesNotExist > Exception Value: > > registration/login.html > > My urls.py looks like this: > > from django.conf.urls.defaults import * > from django.cont

Re: Fixing Missing Template Error

2010-09-28 Thread Rolando Espinoza La Fuente
On Tue, Sep 28, 2010 at 7:35 PM, octopusgrabbus wrote: > I am getting a Missing Template exception > > Exception Type:         TemplateDoesNotExist > Exception Value: > > registration/login.html What's your TEMPLATE_DIRS value in settings.py? Inside your template dir you need to create the file

Fixing Missing Template Error

2010-09-28 Thread octopusgrabbus
I am getting a Missing Template exception Exception Type: TemplateDoesNotExist Exception Value: registration/login.html My urls.py looks like this: from django.conf.urls.defaults import * from django.contrib.auth.views import login . . . urlpatterns = patterns('', (r'^$', main_page)