I'm working on a Django app wich will manage some quizes. Those quizes are formed by a question and some possible answers, which I've defined as different models.
There is an OneToMany relationship between them, which as far as I know, should be modeled with a foreign key, in this case, in the answer entity.
However, while managing the data from the Django administration site, this is quite inconvenient, because I've to define first my question, and later, while adding the answers, look for the question in order to fill the foreign key field.
Would be somehow possible, to define all the answers while adding the question, in a similar way as if it was a ManyToMany relationship (the box with the + symbol, etc)?