From cc975c9b5331ec62131410f2399ea381689b6da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Caux?= <git@jscaux.org> Date: Wed, 17 Nov 2021 16:58:02 +0100 Subject: [PATCH] One more --- scipost_django/comments/models.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scipost_django/comments/models.py b/scipost_django/comments/models.py index a3c0367d5..b5b3a8d30 100644 --- a/scipost_django/comments/models.py +++ b/scipost_django/comments/models.py @@ -84,8 +84,11 @@ class Comment(TimeStampedModel): ) def __str__(self): - return ('by ' + self.author.user.first_name + ' ' + self.author.user.last_name + - ' on ' + self.date_submitted.strftime('%Y-%m-%d') + ', ' + self.comment_text[:30]) + text = "Anonymous" + if not self.anonymous: + text = self.author.user.first_name + ' ' + self.author.user.last_name + return (text + ' on ' + + self.date_submitted.strftime('%Y-%m-%d') + ', ' + self.comment_text[:30]) @property def title(self): -- GitLab