JakMal9 / Quiz

Awesome questions
0 stars 1 forks source link

[ resolves #5 ] questions models and views added. #15

Closed stanislawK closed 2 years ago

stanislawK commented 2 years ago

resolves #5

maciejsobolewski commented 2 years ago

And the pipelines are working! :)

maciejsobolewski commented 2 years ago

Idea after testing: please add the possibility to assign answers to a question in admin question view itself (http://localhost:8000/admin/questions/question/). You can achieve it by adding Django Manager to the models - it's very useful and clean. You can remove Question Answers link completely from the admin after that.

stanislawK commented 2 years ago

Did you mean inline model in admin https://docs.djangoproject.com/en/4.0/ref/contrib/admin/#inlinemodeladmin-objects or modifying our db models to something more abstract with manager, or both together?