This commit is contained in:
Ross
2021-07-28 20:00:06 +01:00
parent 37521a9204
commit 84bfb704bc
3 changed files with 38 additions and 28 deletions
+5 -5
View File
@@ -40,7 +40,7 @@ class Question(models.Model):
# I doubt this is the best way to structure the model
# (but it should work)
a_answer = models.TextField(
help_text=answer_help_text, default=True
help_text=answer_help_text
)
a_feedback = models.TextField(
blank=True,
@@ -48,7 +48,7 @@ class Question(models.Model):
)
b_answer = models.TextField(
help_text=answer_help_text, default=True
help_text=answer_help_text
)
b_feedback = models.TextField(
blank=True,
@@ -56,7 +56,7 @@ class Question(models.Model):
)
c_answer = models.TextField(
help_text=answer_help_text, default=True
help_text=answer_help_text
)
c_feedback = models.TextField(
blank=True,
@@ -64,7 +64,7 @@ class Question(models.Model):
)
d_answer = models.TextField(
help_text=answer_help_text, default=True
help_text=answer_help_text
)
d_feedback = models.TextField(
blank=True,
@@ -72,7 +72,7 @@ class Question(models.Model):
)
e_answer = models.TextField(
help_text=answer_help_text, default=True
help_text=answer_help_text
)
e_feedback = models.TextField(
blank=True,