X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/64484656099dfff360742f3a2c1e4d07bc1f6bd8..6bec9dfd9d2ea3cc93ac1b5caab895140416c98c:/sommitrealweird/blog/models.py?ds=inline diff --git a/sommitrealweird/blog/models.py b/sommitrealweird/blog/models.py index c98407d..fa2e954 100644 --- a/sommitrealweird/blog/models.py +++ b/sommitrealweird/blog/models.py @@ -10,7 +10,7 @@ FORMAT_CHOICES = ( class BlogEntry(models.Model): title = models.CharField(max_length=150) - islive = models.BooleanField() + islive = models.BooleanField(default=False) sections = models.ManyToManyField('BlogSection') format = models.CharField(max_length=10, choices=FORMAT_CHOICES) slug = models.SlugField() @@ -33,7 +33,10 @@ class BlogEntryCommentModerator(CommentModerator): email_notification = True def moderate(self, comment, content_object, request): - return True + if request.user.is_authenticated(): + return False + else: + return True moderator.register(BlogEntry, BlogEntryCommentModerator)