Hi all, I have been searching for a customizable way to select and deselect fields. i have found this way
tempate_01 = {'myfiled':False, 'myscofield':True}
read this values in the db defitionion.
Field('myfield', type='text',readable=template_01'myfiled']),
is this a good way to do this?
Because i generally don't like writing lots of global variables,
thanks

