I am writing an app where the user can make some settings.
So I create a configuration table like so:
Field('key'),
Field('value')
Field('label'),
Field('requires'),
Where each db entry is a setting or configuration.
I would like to create a form whereby the User can view all the different
settings and edit the 'value' field of each setting.
Is there a way to create this form easily in web2py or is it better to create 1
table with many columns but have only 1 db entry?
Also, how will performance differ if I used either table format? Thank you!
--