Django forms design suggestiom
I want to create an app which will allow users to answer multiple choice
questions. So i have a db structure something like: Quiz(name)
->Page(number)->Question(statement)->Answer(text).
As far as I can see this doesn't fit in any built-in django form so I'm
thinking to create a view function having a quiz id , then, on each page
to display the question and the list of answers. I will use POST and html
forms to submit the answers... and so on.
Is there a django built-in way to handle this thing ?
(Something like SessionWizardView , but i'm not really sure it will work,
since i'm not trying to fill simple models with data, but to select an
answer for each quiz)
No comments:
Post a Comment