This is the code I have:
form = SQLFORM(db.auth_user, row.auth_user)
form.append(SQLFORM(db.auth_user_extended, row.auth_user_extended))
My view requires that I manually build the form, and for some reason, when I
look at the resulting form object via PDB, the form object has two items:
<gluon.html.TABLE object at 0xxxx>
<gluon.sqlhtml.SQLFORM object at 0xxxx>
So when I call form.fields, it only returns the auth_user fields. I actually
have to call form[1].fields to get auth_user_extended fields. Is this right?