Is there anyway to create an object of another model instance in a django form for a specified model? For instance when you'll add a new user using django admin you have the options to create another group ou add the user to an existing one.
@Edit I will try to clarify better with another example ... I have a product form, to add a new product, the user can choose which category it belongs, but if there is no such category, it will have to create the corresponding category. And then add this product to new category and save the new product.