diff options
author | Prabhu Ramachandran | 2018-03-22 18:36:05 +0530 |
---|---|---|
committer | GitHub | 2018-03-22 18:36:05 +0530 |
commit | d4f49e8a93ed2ce2e63bd67fa77aa75741c2d6c5 (patch) | |
tree | 8a767d224ac6a1688cd3eb301b2ccac40413fc7e /yaksh/forms.py | |
parent | 734b221a98745ccb6218f43923731323a265966a (diff) | |
parent | c49550b6793c0481fae08f04c794218513894cc4 (diff) | |
download | online_test-d4f49e8a93ed2ce2e63bd67fa77aa75741c2d6c5.tar.gz online_test-d4f49e8a93ed2ce2e63bd67fa77aa75741c2d6c5.tar.bz2 online_test-d4f49e8a93ed2ce2e63bd67fa77aa75741c2d6c5.zip |
Merge pull request #438 from prathamesh920/Grades
Grades
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 9a44cfa..41c9176 100644 --- a/yaksh/forms.py +++ b/yaksh/forms.py @@ -282,7 +282,7 @@ class CourseForm(forms.ModelForm): class Meta: model = Course fields = ['name', 'enrollment', 'active', 'code', 'instructions', - 'start_enroll_time', 'end_enroll_time'] + 'start_enroll_time', 'end_enroll_time', 'grading_system'] class ProfileForm(forms.ModelForm): |