From: Matthijs Kooijman Date: Wed, 4 Feb 2009 10:07:40 +0000 (+0100) Subject: Make the is_public field unchecked by default. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=commitdiff_plain;h=5f2c52d502691cc98e310a7a2887bb1262a5003a Make the is_public field unchecked by default. --- 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)