Ok, if I can not do
"auth.settings.extra_fields['auth_user'].remove(Field('country'))? "
can I do something like similar to this "SQLFORM(database.table,
fields["a", "b"])"?
Since I can not remove fields from the auth table, then I can add the
fields I want and display them only.
ThanksOn Jun 1, 9:56 pm, Massimo Di Pierro <[email protected]> wrote: > You can add fields before the table is defined. You cannot add or > remove fields after the table is defined. You also cannot remove > fields before the table is defined. I could add this but it would be > less transparent that just make a custom table. > > On Jun 1, 3:31 pm, Pystar <[email protected]> wrote: > > > > > > > > > auth.settings.extra_fields['auth_user'].append(Field('country')) > > > does this new release allow me to remove fields from the auth table? > > e.g. auth.settings.extra_fields['auth_user'].remove(Field('country'))? > > Thanks Max, great release.

