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 wrote: > On 24-8-2012 15:42, Masud Khokhar wrote: > > > I have never worked with groundwork

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 Au

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 wrote: > On Sat, Jul 21, 2012 at 10:09 AM, Masud Khokhar > wrote: > > Hi all, > > > > I am using t

Passing a dict to default page_not_found view

2012-07-20 Thread Masud Khokhar
is load a random message in the 404.html. There may be a simpler solution for that. Many thanks in advance. Best wishes, Masud -- 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@google

Re: Getting the 500html page instead the 404html

2012-07-19 Thread Masud
Hi there, You need to create a 404.html page in order to Django's generic view to display the 404 when DEBUG mode is false. Otherwise, it will display a 500 error. Put the 404.html in your app's template directory and try again. Best wishes, Masud On Wednesday, 18 July 2012 11:0