Re: Why is my groundwork in django show up in 404 page?

2012-08-24 Thread Masud Khokhar
Hi Melvyn, Many thanks for clarifying. @txshon, I would recommend the same as Melvyn, please file a ticket with their developers. Best wishes, Masud On 24 August 2012 15:46, Melvyn Sopacua <m.r.sopa...@gmail.com> wrote: > On 24-8-2012 15:42, Masud Khokhar wrote: > > > I

Re: Why is my groundwork in django show up in 404 page?

2012-08-24 Thread Masud Khokhar
Hi there, I have never worked with groundwork before, but it seems like you need the newly created app URLs in your urls.py file. Something like this at the end of your urls.py file may work. urlpatterns += patterns('bookapp.views', url(r'^book/list/$', 'VIEW_NAME', name='list'), ) On 24

Re: Passing a dict to default page_not_found view

2012-07-21 Thread Masud Khokhar
procedure of creating a tag? Sorry if this sounds all basic but I am quite new to this. Thanks a lot in advance. Best wishes, Masud On 21 July 2012 08:52, Russell Keith-Magee <russ...@keith-magee.com> wrote: > On Sat, Jul 21, 2012 at 10:09 AM, Masud Khokhar <masud.khok...@gmail.com>

Passing a dict to default page_not_found view

2012-07-20 Thread Masud Khokhar
Hi all, I am using the default 404 view that Django uses. I have created a custom 404.html page in my templates directory which automatically gets loaded. Is it possible for this page to load a python dictionary or do I need to raise http404 myself for that? In essence, what I am trying to do