Hello
I’ve got a model that stores part of its information in the DB, and part on the file system.
I would like to use the generic UpdateView, adding some fields for the information on the file system.
So I need to
- add fields to the form
- initialize those fields (using the object’s DB info to access the file system)
- retrieve those fields (on post) to save the new info to the file system
I’m quite lost looking for pointers in the doc on what methods I should redefine (surely because I’m new to django)
any help please ?