Hi,
I am trying to create a dynamic page that presents/updates multiple ModelForms using Class-based-views. I have created single pages that modify the Model objects separately. However, what I really want to do is to have them all on one page like so:
I hope the sketch is self-explanatory. Users should be able to add/remove Shelves dynamically and the books likewise. Removing a shelf removes the child-objects (books). That is already possible via on_delete=CASCADE
on database level.
So … does anyone have an idea of the best approach to this?