diff --git a/tildes/tildes/templates/macros/comments.jinja2 b/tildes/tildes/templates/macros/comments.jinja2 index d8d66bb..3f69204 100644 --- a/tildes/tildes/templates/macros/comments.jinja2 +++ b/tildes/tildes/templates/macros/comments.jinja2 @@ -94,7 +94,7 @@ {% if request.has_permission('view', comment) %} {# Show votes at the top only if it's your own comment #} - {% if request.user == comment.user and comment.num_votes > 0 %} + {% if request.user == comment.user and comment.num_votes > 0 and not comment.is_removed %}
{{ pluralize(comment.num_votes, "vote") }}
{% endif %}