Re: Coltrane Weblog Practical Django Projects 2nd Ed, page not found for http://127.0.0.1:8000/weblog/

2009-12-09 Thread Mark Freeman
Bernard, I originally replied by email, so this may get double posted. Your problem is that you have the URL for the flat pages module above the one for the weblog. The empty string '' is basically a catch all, which is stopping it from ever seeing the weblog. When Django parses the URLs, it does

Re: Coltrane Weblog Practical Django Projects 2nd Ed, page not found for http://127.0.0.1:8000/weblog/

2009-12-09 Thread Mark Freeman
Bernard, You need to put the url for weblog above flat pages. The empty string '' is catching everything and it never sees your weblog url. Mark On Dec 8, 7:39 am, bernard wrote: > Hi all, > > I am reading through the Practical Django Projects 2nd Edition book > and i am

Coltrane Weblog Practical Django Projects 2nd Ed, page not found for http://127.0.0.1:8000/weblog/

2009-12-08 Thread bernard
Hi all, I am reading through the Practical Django Projects 2nd Edition book and i am now on the weblog entries_index part (page 84) where im trying to view the weblog entry index but I get an error No FlatPage matches the given query. I followed exactly what's written in the book. Please help,