diff --git a/anatomy/forms.py b/anatomy/forms.py index ddeb892e..c9541749 100644 --- a/anatomy/forms.py +++ b/anatomy/forms.py @@ -203,4 +203,4 @@ class BodyPartForm(ModelForm): class ExamForm(ModelForm): class Meta: model = Exam - fields = ["name", "time_limit", "exam_mode"] \ No newline at end of file + fields = ["name", "time_limit", "exam_mode", "active"] \ No newline at end of file diff --git a/rapids/forms.py b/rapids/forms.py index 5ce41e42..f552240c 100755 --- a/rapids/forms.py +++ b/rapids/forms.py @@ -221,4 +221,4 @@ AnswerUpdateFormSet = inlineformset_factory( class ExamForm(ModelForm): class Meta: model = Exam - fields = ["name", "time_limit", "exam_mode"] \ No newline at end of file + fields = ["name", "time_limit", "exam_mode", "active"] \ No newline at end of file