diff --git a/comments/templates/comments/_comment_card_content.html b/comments/templates/comments/_comment_card_content.html index 73c341e0928871e17b414109e02a7de25b3a72c8..fb7dff65a51631ad07bb1211b5751b85ffdb217a 100644 --- a/comments/templates/comments/_comment_card_content.html +++ b/comments/templates/comments/_comment_card_content.html @@ -1,8 +1,11 @@ <div class="card-body card-comment"> {% block card_block_header %}{% endblock %} <p class="card-text"> - <a href="{{comment.author.get_absolute_url}}">{{comment.author.user.first_name}} {{comment.author.user.last_name}}</a>: - + {% if comment.anonymous %} + Anonymous: + {% else %} + <a href="{{comment.author.get_absolute_url}}">{{comment.author.user.first_name}} {{comment.author.user.last_name}}</a>: + {% endif %} <a href="{{comment.get_absolute_url}}"> "{{comment.comment_text|slice:'30'}}{% if comment.comment_text|length > 30 %}...{% endif %}" </a>