diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/activities/post.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/activities/post.html b/templates/activities/post.html index 75b56d8..fd717ad 100644 --- a/templates/activities/post.html +++ b/templates/activities/post.html @@ -3,6 +3,9 @@ {% block title %}Post by {{ post.author.name_or_handle }}{% endblock %} {% block content %} + {% if parent %} + {% include "activities/_post.html" with post=parent reply=True link_original=False %} + {% endif %} {% include "activities/_post.html" %} {% for reply in replies %} {% include "activities/_post.html" with post=reply reply=True link_original=False %} |