On Tuesday, May 10, 2011 1:22:07 PM UTC-4, JagChris wrote: > > userfname = db.auth_user.first_name
The above is giving you the entire 'first_name' Field object of the 'auth_user' table. Instead, you probably want the specific first name of the currently logged in user. For that, you can use auth.user.first_name (auth.user is the db.auth_user record for the currently logged in user). Anthony