This commit is contained in:
Ross
2026-07-13 10:03:33 +01:00
parent 89bf6eedc0
commit 3a3ec75b1d
18 changed files with 514 additions and 24 deletions
+11
View File
@@ -1050,6 +1050,12 @@ class ExamBase(ExamOrCollectionGenericBase):
default=False,
)
pass_mark = models.FloatField(
null=True,
blank=True,
help_text="Pass mark for the exam. If unset, defaults to 50% of the maximum score.",
)
# randomise_question_order = models.BooleanField(
# help_text="If an exam should randomise the order of questions in RTS.",
# )
@@ -1710,6 +1716,11 @@ class CidUserExam(models.Model):
manual_submission = models.BooleanField(default=False)
exclude_from_stats = models.BooleanField(
default=False,
help_text="Exclude this candidate from exam statistics."
)
# TODO switch to json field?
results_emailed_status = models.CharField(max_length=255, blank=True)