Add 'frcr_appropriate' field to Question model for exam relevance

This commit is contained in:
Ross
2025-10-29 21:03:01 +00:00
parent f4cc3cc5b4
commit dca4ff249a
4 changed files with 41 additions and 0 deletions
+4
View File
@@ -112,6 +112,10 @@ class Question(QuestionBase):
default=True, help_text="If set, this question is available to all users for use in their exams."
)
frcr_appropriate = models.BooleanField(
default=True, help_text="If set, this question is considered appropriate for FRCR exam practice."
)
#notes = GenericRelation(QuestionNote)
def __str__(self):