diff --git a/tildes/tildes/templates/macros/comments.jinja2 b/tildes/tildes/templates/macros/comments.jinja2 index a69b7de..286255c 100644 --- a/tildes/tildes/templates/macros/comments.jinja2 +++ b/tildes/tildes/templates/macros/comments.jinja2 @@ -90,17 +90,6 @@ {% 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 %} -
{{ comment.num_votes }} - {% trans num_votes=comment.num_votes %} - vote - {% pluralize %} - votes - {% endtrans %} -
- {% endif %} - {% if comment.is_label_active("exemplary") and request.has_permission("view_exemplary_reasons", comment) %}
Exemplary @@ -142,17 +131,6 @@ {{ comment.rendered_html|safe }} - {# Show votes at the bottom only if the viewer is logged out #} - {% if not request.user and comment.num_votes > 0 %} -
{{ comment.num_votes }} - {% trans num_votes=comment.num_votes %} - vote - {% pluralize %} - votes - {% endtrans %} -
- {% endif %} - {% if request.has_permission('vote', comment) %} {% if comment.user_voted is defined and comment.user_voted %} @@ -174,9 +152,6 @@ data-ic-replace-target="true" >Vote {% endif %} - {% if comment.num_votes > 0 %} - ({{ comment.num_votes }}) - {% endif %} {% endif %}