auth.settings.extra_fields['auth_user']= [
Field('Country',default="None"),
Field('City',default="None"),
Field('gender',requires=IS_IN_SET(genders,zero=None)),
# Trying to Show a massage new to the checkbox using this Field ..
Field('agree','boolean',requires=IS_NOT_EMPTY(error_message='you must
agree this'))
]
>

