> --
> You received this message because you are subscribed to the Google Groups "Django users" group.
> To post to this group, send email to django...@googlegroups.com.
> To unsubscribe from this group, send email to django-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
*not*sure*about*the*correctness*of*this*
---8<---
... if you want to override the 404 view, you can specify 'handler404' in your URLconf, like so:
from django.conf.urls.defaults import *
urlpatterns = patterns ('',
...
)
handler404 = 'mysite.views.my_custom_404_view'
Behind the scenes ...
---8<---
hope this helps,
good luck,
TR
Am 18.01.2011 um 13:42 schrieb Ivo Brodien: