Make the is_public field unchecked by default.
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 4 Feb 2009 10:07:40 +0000 (11:07 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Wed, 4 Feb 2009 10:07:40 +0000 (11:07 +0100)
influences/forms.py

index 7db751735048eb1affbf7ad7608b4a41606b9ffc..a060368380e41b1eb1fd3cfed39c965b7d2108c9 100644 (file)
@@ -1,4 +1,4 @@
-from django.forms.fields import CharField
+from django.forms.fields import CharField, BooleanField
 from django.forms.widgets import Textarea
 from threadedcomments.forms import ThreadedCommentForm
 from xerxes.tools.forms import ContextModelForm
@@ -23,6 +23,7 @@ class InfluenceCommentForm(ThreadedCommentForm):
 
 class AdminInfluenceCommentForm(ThreadedCommentForm):
     comment = CharField(widget=Textarea(attrs={'cols' : 80}))
+    is_public = BooleanField(required=False, initial=False)
     def __init__(self, *args, **kwargs):
         super(AdminInfluenceCommentForm, self).__init__(*args, **kwargs)