start adding self review to collections

This commit is contained in:
Ross
2023-07-10 09:06:46 +01:00
parent c799f106d7
commit 9a5088c03a
7 changed files with 79 additions and 11 deletions
+5
View File
@@ -1044,6 +1044,11 @@ class CidUserExam(models.Model):
start_time = models.DateTimeField(blank=True, null=True)
end_time = models.DateTimeField(blank=True, null=True)
completed = models.BooleanField(
default=False,
help_text="If a exam has been completed. This will usually lock the exam to further reponses.",
)
cid_user = models.ForeignKey(
CidUser,
on_delete=models.CASCADE,