How can I make these two queries into one cause when I use them in my view
(htmll) it doesn't work as expected
product=db(db.product.id == this_page).select(db.product.ALL)
userstuff=db(db.user_extended.userinfo ==
db.product.userinfo).select(db.user_extended.ALL)
this is what I am doing
{{for stuff, products in zip(userstuff, product):}}
if anyone has suggestions on how I can get this to work. Currently the user
stuff value always returns the first entry in the db regardless of which
user I select
Any ideas
*cheers
Andrew