Hi Lucas, What about:
Field('user_id', db.auth_user, requires=IS_IN_DB(db,
'auth_user.id','%(last_name)s, %(first_name)s (%(id)s)'))
'auth_user.id' instead of db.auth_user.id
You could use a developer tool's inspect element function or just view the
page's source code to see if the select options read like:
<option value="1">First_name Last_name (1)</option>
Kind regards,
Annet

