{% load i18n %}
{% for post in replies %}
{% include "action_reply_post.html" %} {% include "action_like_post.html" %} {% include "action_boost_post.html" %} {% include "action_open_post.html" %} {{ post.author.name|default:post.author.username }} {% if post.edited %} {{ post.edited | date }} {% elif post.published %} {{ post.published | date }} {% else %} {{ post.created | date }} {% endif %} {% if post.summary %}
{{ post.summary }} {{ post.safe_content_local }}
{% else %} {{ post.safe_content_local }} {% endif %} {% for attachment in post.attachments.all %}
{{ attachment.file_display_name }}
{% endfor %}
{% empty %}
{% trans 'nothing so far.' %}
{% endfor %} {% if post %}
{% endif %}