Re: Django url pass through

2014-09-23 Thread Collin Anderson
It depends on what is defined in your waitlist.urls. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this g

Re: Django url pass through

2014-09-23 Thread robert brook
Thank you your response answers the "what do I do" as a response by calling the 404 view. I also need to understand how the url will be coded so that an invalid url that does not match anything falls through the the last url in the urls.py file. I have a project urls.py file and expect that a

Re: Django url pass through

2014-09-23 Thread Daniel Rus Morales
Hi Robert, In those cases a HTTP 404 is the right response, to help Search Engines realise that such a URL doesn’t exist and to show users a "Page Not Found" message. To create a nice looking 404 response for users just write a view to handle it and add the “handler404” entry to your root URLCo

Django url pass through

2014-09-22 Thread robert brook
How is a url conf written so that if none of the useful urls are matched it will pass through to some sort of wild card regular expressions so that the view / redirection can be performed gracefully Thanks -- You received this message because you are subscribed to the Google Groups "Django us