X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=influences%2Fforms.py;h=a060368380e41b1eb1fd3cfed39c965b7d2108c9;hb=d16eb21f966f461fa86f4e4aae8ca74216db26d4;hp=7db751735048eb1affbf7ad7608b4a41606b9ffc;hpb=164fbd42481c6be433170df9f4977a160a8a32bf;p=matthijs%2Fprojects%2Fxerxes.git diff --git a/influences/forms.py b/influences/forms.py index 7db7517..a060368 100644 --- a/influences/forms.py +++ b/influences/forms.py @@ -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)