feat: add marker feedback field to UserAnswer model and update forms accordingly
This commit is contained in:
@@ -624,6 +624,10 @@ class UserAnswer(UserAnswerBase):
|
||||
null=True, blank=True, help_text="Feedback for the candidate, this is optional but WILL be shown to 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."
|
||||
)
|
||||
|
||||
class CallStateOptions(models.TextChoices):
|
||||
CORRECT = "C", _("Correct Call")
|
||||
OVERCALL = "O", _("Overcall")
|
||||
|
||||
Reference in New Issue
Block a user