How to work with unsaved many-to-many relations in django?
I have a couple of models in django which are connected many-to-many. I want to create instances of these models in memory , present them to the user (via custom method-calls inside the view-templates) and if the user is satisfied, save them to the database. However, if I try to do anything on the model-instances (call rendering methods, e.g.), I get an error message that says that I have to save the instances first. The documentation says that this is because the models are in a many-to-many relationship. How do I present objects to the user and allowing him/her to save or discard them