diff --git a/files/templates/comments.html b/files/templates/comments.html index 96cb3b0fd..e58252a77 100644 --- a/files/templates/comments.html +++ b/files/templates/comments.html @@ -13,6 +13,8 @@ {% macro single_comment(c, level=1, collapse=False) %} +{% if user_can_see(v, c) %} + {% set ups=c.upvotes %} {% set downs=c.downvotes %} {% set score=ups-downs %} @@ -706,9 +708,12 @@ {% endif %} {% endif %} + +{% endif %} + {% endmacro %} -{% for comment in comments if user_can_see(v, comment) %} +{% for comment in comments %} {{single_comment(comment)}} {% endfor %}