diff --git a/app/static/styles.css b/app/static/styles.css
index 060a97ee..6dd24f06 100644
--- a/app/static/styles.css
+++ b/app/static/styles.css
@@ -1343,6 +1343,7 @@ time {
.comment {
clear: both;
margin-left: 15px;
+ padding-left: 0px;
padding-top: 8px;
}
.comment .limit_height {
diff --git a/app/static/styles.scss b/app/static/styles.scss
index 9b69b5ab..667ae4fd 100644
--- a/app/static/styles.scss
+++ b/app/static/styles.scss
@@ -997,6 +997,7 @@ time {
.comment {
clear: both;
margin-left: 15px;
+ padding-left: 0px;
padding-top: 8px;
.limit_height {
diff --git a/app/templates/admin/deleted_posts.html b/app/templates/admin/deleted_posts.html
index bf4cef49..75164833 100644
--- a/app/templates/admin/deleted_posts.html
+++ b/app/templates/admin/deleted_posts.html
@@ -33,7 +33,7 @@
{% for post_reply in post_replies.items %}
- {% with teaser=True, disable_voting=True, no_collapse=True %}
+ {% with teaser=True, disable_voting=True, no_collapse=True, show_deleted=True %}
{% include 'post/_post_reply_teaser.html' %}
{% endwith %}
diff --git a/app/templates/admin/spam_posts.html b/app/templates/admin/spam_posts.html
index 8c3c98eb..cc9f3a15 100644
--- a/app/templates/admin/spam_posts.html
+++ b/app/templates/admin/spam_posts.html
@@ -19,7 +19,7 @@
{% for post_reply in post_replies.items %}
- {% with teaser=True, disable_voting=True, no_collapse=True %}
+ {% with teaser=True, disable_voting=True, no_collapse=True, show_deleted=True %}
{% include 'post/_post_reply_teaser.html' %}
{% endwith %}
diff --git a/app/templates/post/_post_reply_teaser.html b/app/templates/post/_post_reply_teaser.html
index 29ceb0f2..f0637cd7 100644
--- a/app/templates/post/_post_reply_teaser.html
+++ b/app/templates/post/_post_reply_teaser.html
@@ -2,6 +2,8 @@
teaser: Renders just a teaser
disable_voting: Disable voting buttons (to prevent mass downvoting)
no_collapse: Don't collapse for admin and moderator views
+ show_deleted: Show deleted content (for admin views)
+ children: replies to this reply
#}
{% if current_user.is_authenticated -%}
{% set collapsed = ((post_reply.score <= current_user.reply_collapse_threshold) or post_reply.deleted)
@@ -9,7 +11,7 @@
{% else -%}
{% set collapsed = (post_reply.score <= -10) and not no_collapse -%}
{% endif -%}
-
Deleted by moderator
+ {% else -%} +Deleted by author
+ {% endif -%} + {% else -%} + {{ post_reply.body_html | community_links | safe }} + {% endif -%}