Re: breadcrumb solution

2009-09-09 Thread Mike Dewhirst
Thanks David - I do :) Cheers M David De La Harpe Golden wrote: > Mike Dewhirst wrote: >> I would like to get breadcrumbs working in a simple way. Could anyone >> please help? > >> Is there a better way? > > One thing you can do is a "pure template" based breadcrumb > or pseudo-breadcrumb,

Re: breadcrumb solution

2009-09-09 Thread David De La Harpe Golden
Mike Dewhirst wrote: > I would like to get breadcrumbs working in a simple way. Could anyone > please help? > Is there a better way? One thing you can do is a "pure template" based breadcrumb or pseudo-breadcrumb, assuming you have a template inheritance graph with different views rendering dif

Re: breadcrumb solution

2009-09-09 Thread Mike Dewhirst
Daniel Roseman wrote: > On Sep 9, 7:32 am, Mike Dewhirst wrote: >> I would like to get breadcrumbs working in a simple way. Could anyone >> please help? >> >> I think I need a singleton with a dict like this ... >> >> bread = singleton() >> >> bread.dct['last_title'] = >> >> Within each view and

Re: breadcrumb solution

2009-09-09 Thread Daniel Roseman
On Sep 9, 7:32 am, Mike Dewhirst wrote: > I would like to get breadcrumbs working in a simple way. Could anyone > please help? > > I think I need a singleton with a dict like this ... > > bread = singleton() > > bread.dct['last_title'] = > > Within each view and before doing anything else I want

breadcrumb solution

2009-09-08 Thread Mike Dewhirst
I would like to get breadcrumbs working in a simple way. Could anyone please help? I think I need a singleton with a dict like this ... bread = singleton() bread.dct['last_title'] = Within each view and before doing anything else I want to ... def someview(request): title = 'whatever'