summaryrefslogtreecommitdiff
path: root/website/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'website/forms.py')
-rw-r--r--website/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/forms.py b/website/forms.py
index 3ca48da..f1e29be 100644
--- a/website/forms.py
+++ b/website/forms.py
@@ -71,6 +71,6 @@ class NewQuestionForm(forms.Form):
title = forms.CharField(max_length=200)
body = forms.CharField(widget=forms.Textarea())
-class ReplyQuesitionForm(forms.Form):
+class AnswerQuesitionForm(forms.Form):
question = forms.IntegerField(widget=forms.HiddenInput())
body = forms.CharField(widget=forms.Textarea())