diff --git a/app/templates/admin/deleted_posts.html b/app/templates/admin/deleted_posts.html
index 1ad63f32..420ef09e 100644
--- a/app/templates/admin/deleted_posts.html
+++ b/app/templates/admin/deleted_posts.html
@@ -21,7 +21,10 @@
{% for post_reply in post_replies.items %}
- {% include 'post/_post_reply_teaser.html' %}
+ {% with teaser=True, disable_voting=True, no_collapse=True %}
+ {% include 'post/_post_reply_teaser.html' %}
+ {% endwith %}
+
{% else %}
{{ _('No deleted comments.') }}
{% endfor %}
@@ -38,4 +41,4 @@
{% for post_reply in post_replies.items %}
- {% include 'post/_post_reply_teaser.html' %}
+ {% with teaser=True, disable_voting=True, no_collapse=True %}
+ {% include 'post/_post_reply_teaser.html' %}
+ {% endwith %}
+
{% endfor %}
{% else %}
@@ -34,4 +37,4 @@
{% for post_reply in post_replies.items %}
- {% include 'post/_post_reply_teaser.html' %}
+ {% with teaser=True %}
+ {% include 'post/_post_reply_teaser.html' %}
+ {% endwith %}
+
{% else -%}
{{ _('No comments have been bookmarked. Use the three dots on each comment to find the bookmark function.') }}
{% endfor -%}
diff --git a/app/templates/user/show_profile.html b/app/templates/user/show_profile.html
index 7d9ec758..1c1f31d4 100644
--- a/app/templates/user/show_profile.html
+++ b/app/templates/user/show_profile.html
@@ -122,7 +122,10 @@
{% for post_reply in post_replies.items %}
- {% include 'post/_post_reply_teaser.html' %}
+ {% with teaser=True, disable_voting=True %}
+ {% include 'post/_post_reply_teaser.html' %}
+ {% endwith %}
+
{% endfor %}