diff options
author | Prabhu Ramachandran | 2018-01-19 22:25:39 +0530 |
---|---|---|
committer | GitHub | 2018-01-19 22:25:39 +0530 |
commit | 0824e419c6aa52bb9b788db1208dc2b70c104d8f (patch) | |
tree | 7405617e9351e724db5269e55d915ad6cbaff01d /yaksh/forms.py | |
parent | 1445358b4ee548edd16a8d42026b080b7d92a0c4 (diff) | |
parent | bfc3f08d5da08f774e76aa169a50f8e7847ff6ed (diff) | |
download | online_test-0824e419c6aa52bb9b788db1208dc2b70c104d8f.tar.gz online_test-0824e419c6aa52bb9b788db1208dc2b70c104d8f.tar.bz2 online_test-0824e419c6aa52bb9b788db1208dc2b70c104d8f.zip |
Merge pull request #424 from adityacp/fix_question_paper_edit
Fix Question Paper and Course related issue
Diffstat (limited to 'yaksh/forms.py')
-rw-r--r-- | yaksh/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/forms.py b/yaksh/forms.py index 8399bc9..9fd2eaa 100644 --- a/yaksh/forms.py +++ b/yaksh/forms.py @@ -176,7 +176,7 @@ class UserLoginForm(forms.Form): class ExerciseForm(forms.ModelForm): class Meta: model = Quiz - fields = ['description', 'view_answerpaper'] + fields = ['description', 'view_answerpaper', 'active'] class QuizForm(forms.ModelForm): |