I'm building a simple quiz app. I want to add an ability to add multiple choices (with custom user text) for each question in the admin panel. So the user can create a question and on the same page add as many answers as he needs. What is the best way to realize it?
I know that I can add another model for answers and make a relationship with questions model. But it's not exactly what I want to achieve.
Thanks for any help.