This commit is contained in:
Ross
2021-07-29 18:14:20 +01:00
parent 0385ee2e32
commit 545b5c0c9b
3 changed files with 13 additions and 6 deletions
+5 -5
View File
@@ -30,11 +30,11 @@ class Question(models.Model):
answer_help_text = "Answer text"
BEST_ANSWER_CHOICES = (
('a', 'answer_a'),
('b', 'answer_b'),
('c', 'answer_c'),
('d', 'answer_d'),
('e', 'answer_e'),
('a', 'a_answer'),
('b', 'b_answer'),
('c', 'c_answer'),
('d', 'd_answer'),
('e', 'e_answer'),
)
# I doubt this is the best way to structure the model