start user score pages

This commit is contained in:
Ross
2020-11-23 19:37:18 +00:00
parent 1b1997c21a
commit 8b52a10d72
4 changed files with 68 additions and 3 deletions
+3 -3
View File
@@ -91,6 +91,9 @@ class AnatomyQuestion(models.Model):
null=True,
blank=True)
created_date = models.DateTimeField(default=timezone.now)
open_access = models.BooleanField(help_text="If an question should be freely available to browse",
default=True)
def __str__(self):
# Get first answer
@@ -195,9 +198,6 @@ class Exam(models.Model):
active = models.BooleanField(help_text="If an exam should be available",
default=True)
recreate_json = models.BooleanField(help_text="If the json cache needs updating",
default=False)
def __str__(self):
return self.name