summaryrefslogtreecommitdiffstats
path: root/askbot/forms.py
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-08-30 10:31:28 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-08-30 10:31:28 -0600
commitc07adc9953fbe5a7ebf4754980b20aa15b200b13 (patch)
tree1eea593f23add711b386686b9ddeebd1ee818a90 /askbot/forms.py
parent7b752421e4982c4ef9cce0adfdc439daa58a832b (diff)
downloadaskbot-c07adc9953fbe5a7ebf4754980b20aa15b200b13.tar.gz
askbot-c07adc9953fbe5a7ebf4754980b20aa15b200b13.tar.bz2
askbot-c07adc9953fbe5a7ebf4754980b20aa15b200b13.zip
forgot to include one field in form
Diffstat (limited to 'askbot/forms.py')
-rw-r--r--askbot/forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/askbot/forms.py b/askbot/forms.py
index 4d13fc02..f57afd85 100644
--- a/askbot/forms.py
+++ b/askbot/forms.py
@@ -934,6 +934,7 @@ class CreateAskWidgetForm(forms.Form, FormWithHideableFields):
widget=forms.Textarea,
required=False
)
+ include_text_field = forms.BooleanField(required=False)
def __init__(self, *args, **kwargs):
from askbot.models import Tag