feat: add marker feedback field to UserAnswer model and update forms accordingly

This commit is contained in:
Ross
2026-07-04 22:49:11 +01:00
parent d8bacfefa9
commit 277322059c
4 changed files with 12 additions and 2 deletions
+4
View File
@@ -644,6 +644,10 @@ class UserAnswer(UserAnswerBase):
null=True, blank=True, help_text="Feedback for the candidate"
)
marker_feedback = models.TextField(
null=True, blank=True, help_text="Feedback for the marker, this is optional and will NOT be shown to the candidate."
)
# mark = models.ManyToManyField(
# "AnswerMarks", related_name="user_answer", blank=True
# )