diff options
author | ankitjavalkar | 2015-05-13 18:20:26 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-05-20 14:58:05 +0530 |
commit | 92150265c82f3d1f6e4eb382447ae8e448cd406f (patch) | |
tree | f14a18f7e821d87b098a93610ece8772d568563b /testapp/exam/forms.py | |
parent | 13317f56278969cb6568026d099e15166bfc5d6c (diff) | |
download | online_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.tar.gz online_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.tar.bz2 online_test-92150265c82f3d1f6e4eb382447ae8e448cd406f.zip |
Fix import paths, formatting, views and minor errors
- Submitted file path should be set after changing directory
- Change timeout duration in java test case
- Set shell=True in _compile_command
- Fix errors in code as per tests
Diffstat (limited to 'testapp/exam/forms.py')
-rw-r--r-- | testapp/exam/forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testapp/exam/forms.py b/testapp/exam/forms.py index 74a9b5a..b56e545 100644 --- a/testapp/exam/forms.py +++ b/testapp/exam/forms.py @@ -1,5 +1,5 @@ from django import forms -from exam.models import Profile, Quiz, Question, TestCase +from testapp.exam.models import Profile, Quiz, Question, TestCase from django.contrib.auth import authenticate from django.contrib.auth.models import User @@ -206,6 +206,7 @@ class QuestionForm(forms.ModelForm): summary = self.cleaned_data.get("summary") description = self.cleaned_data.get("description") points = self.cleaned_data.get("points") + test = self.cleaned_data.get("test") options = self.cleaned_data.get("options") language = self.cleaned_data.get("language") type = self.cleaned_data.get("type") |