Re: how to use several different querysets in one single template(for a single url)?

2009-04-13 Thread John M
You might want to think about using the direct_to_template function instead, it uses the Request Context values, which allows you to take advantage of the login system, where as the render_to_response does not (by default). J On Apr 13, 7:16 pm, jason wrote: > using the common view function(ren

Re: how to use several different querysets in one single template(for a single url)?

2009-04-13 Thread jason
using the common view function(render_to_response) would solve the problems. i should have checked the django documentation more carefully. On Apr 13, 7:48 pm, jason wrote: > hi guys, > > i want to create a page includes several querysets to display several > boards of different staffs. i used t

how to use several different querysets in one single template(for a single url)?

2009-04-13 Thread jason
hi guys, i want to create a page includes several querysets to display several boards of different staffs. i used the generic.list_detail to do this, but the object_list seemed to accept only one dictionary argument to go. so how can i use several querysets in the single template to display diffe