I have a complex form containing an inline formset, which basically has got some text fields and a file upload field. Now, I want to enable the user to create a new record, and within the same step attach several files.
I think there are different options to achieve this, maybe I could write a jQuery-Plugin that clones the formset, do all the validation and inserting stuff manually in the view etc.
The main point before I begin is: I wonder if there isn't any solution out there that takes cares of the problem - in my opinion, this is a very common problem.
Maybe there is some approach of a solution I did not notice?