A slightly related question: In the grid, how can I show values from referenced tables?
I have the table:
db.define_table('table1',
Field('field1'),
Field('usr', db.auth_user))
How can I show the user's first and last names in the grid for table1? The
ignores the usr column altogether, when I put it in fields.

