What is the best way to go about creating multiple identical objects as a result of a user completing a single form in Django?
If I call form.save() in a loop (based on a set number, either set by the form or something else), it only creates one instance with the same ID several times.
What I'm actually trying to do is to create a load of identical instances, every day/week/whatever based on a range of user-specified dates (using django-recurrence at the moment).
Any ideas?