X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=blobdiff_plain;f=influences%2Fforms.py;fp=influences%2Fforms.py;h=db825cc018362760833c0c2e74a44a11c582e8e4;hp=e1a6db381f29159742c9aef477491bab3b0e3b63;hb=dad2574dc3f0cc1d114a85ac44ef440b5baeeaa8;hpb=d8acd479311086f3372ed61688a7468356198a04 diff --git a/influences/forms.py b/influences/forms.py index e1a6db3..db825cc 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 django.forms.models import ModelMultipleChoiceField from threadedcomments.forms import ThreadedCommentForm @@ -25,6 +25,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)