I’m working on a school management system for my final year project using Django REST Framework (DRF). So far, I’ve been handling single models, which was manageable. However, I’m now facing a challenge with larger forms—for example, in a student enrollment form, when the "Save" button is clicked, the data needs to be saved across 6-7 different tables.
I’m looking for advice, resources, or video tutorials on how to efficiently handle such large forms in DRF. Specifically, I need guidance on organizing serializers and views for this kind of complexity.
Any help would be greatly appreciated!