I'm trying to remove the fields 'first_name' and 'last_name' from the 
auth_user database, or at least stop them from showing up on the 
registration forms and such. 

I've tried the following in db.py: 

db.auth_user.first_name.readable = db.auth_user.first_name.writable = False

I also placing the below code above the auth.define_tables() code. 
 
auth.settings.extra_fields['auth_user'] = 
    Field('first_name', readable=False,writable=False

Some help would be appreciated. 

Reply via email to