Hi Dave,

> line 72, in find_template_source
>     raise TemplateDoesNotExist, name
> TemplateDoesNotExist: 404.html

This is really saying that you do not have a 404.html template
defined. Just create a simple 404.html file at the base of your
template dir path and add a simple message to it.

This won't solve the problem of why you are getting that 404 error in
the first place, but at least you won't be distracted by the confusing
message.

Also, it's likely that the request is never matching any of your URL
conf patterns causing the 404 error. So, perhaps post another message
here detailing all urls.py that come into action during this
particular request.

-Rajesh


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to