Oops, sorry. I meant db.auth_user.<field>.writable = False
On Tuesday, May 15, 2012 8:53:07 AM UTC-3, Alan Etkin wrote: > > I guess you can disable those fields if the user is not logged in. Perhaps > adding this to the end of the model: > > if not auth.is_logged_in(): > db.auth_user.upload.readable = False > db.auth_user.About_Me.readable = False > > >

