summaryrefslogtreecommitdiff
path: root/testapp/exam/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/exam/forms.py')
-rw-r--r--testapp/exam/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp/exam/forms.py b/testapp/exam/forms.py
index f0c515a..1788a08 100644
--- a/testapp/exam/forms.py
+++ b/testapp/exam/forms.py
@@ -123,7 +123,7 @@ class QuizForm(forms.Form):
new_quiz.description=description
new_quiz.save()
-class AddQuestionForm(forms.Form):
+class QuestionForm(forms.Form):
summary = forms.CharField(max_length = 128)
description = forms.CharField(widget = forms.Textarea(attrs={'cols': 20, 'rows': 3}))
points = forms.FloatField()