thank you so much for your hints and pointers denes & pbreit, pardon me, i
just wan to show up all of the content of wiki page on index page and also
the comments that related with it. is there a way to do this?
i've already modified it into (learned from kenneth damian blog on
appliances):
def index():
pages = db().select(db.page.ALL, orderby = db.page.title)
db.comment.page_id.default = db.page.id
form = crud.create(db.comment) if auth.user else None
comments = db(db.comment.page_id == db.page.id).select()
return dict(pages = pages, comments = comments, form = form)
but still gettin an error, the strange is in kenneth damian blog appliance,
this code is workin, did anyone know how to fix it?
thank you very much before