This commit is contained in:
Ross
2022-03-01 18:24:16 +00:00
parent ab2b29eebd
commit 576113a812
3 changed files with 30 additions and 8 deletions
+9 -1
View File
@@ -228,4 +228,12 @@ AnswerUpdateFormSet = inlineformset_factory(
class ExamForm(ModelForm):
class Meta:
model = Exam
fields = ["name", "time_limit", "open_access", "exam_mode", "active", "archive"]
fields = [
"name",
"time_limit",
"open_access",
"exam_mode",
"active",
"publish_results",
"archive",
]