I’m wondering if it’s possible to create nested forms, i will try to explain with a simple example:
Module World, form world with a list of continent
form continent with a list of country
form country with a list of town
I don’t need a nested menu too but I need that db tables are created with the correct primary/secondary keys to allow the links between the forms.
Yes I use a One2Many field inside world.py to link continent.py
Can I use again a One2Many field inside continent.py to link country.py and a One2Many field inside country.py to link town.py ?
Is there a limitation concerning the number of nested One2Many field ?
At the end, db side we should have table_world with key_world, table_continent with key_continent and key_world, table_country with key_country and key_continent, table_town with key_town and key_country, isn’t it ?
No it was really a list in a form when you switch this list to the form you see a new list and again you switch to a form which contains a list.
List view with tree structure is a nice feature, thanks for the info