[Answered ]-IntegrityError – NOT NULL constraint failed

1👍

Change this line in views.py teachertests function:

question.Q1 = data_form.get('Q1')

To:

question.Q1 = data_form.get('Question1')

And apply the steps mentioned by @Ash Singh

Leave a comment