{% load i18n %} {% load board %} {% load cache %} {% get_current_language as LANGUAGE_CODE %} {% spaceless %} {% cache 600 post post.id post.last_edit_time thread.archived bumpable truncated moderator LANGUAGE_CODE need_open_link %} {% if thread.archived %}
{% elif bumpable %}
{% else %}
{% endif %} {% if post.image %} {% endif %}
{% autoescape off %} {% if truncated %} {{ post.text.rendered|truncatewords_html:50 }} {% else %} {{ post.text.rendered }} {% endif %} {% endautoescape %} {% with refposts=post.get_sorted_referenced_posts %} {% if refposts %}
{% trans "Replies" %}: {% for ref_post in refposts %} >>{{ ref_post.id }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endif %} {% endwith %}
{% endcache %} {% if is_opening %} {% cache 600 post_thread thread.id thread.last_edit_time LANGUAGE_CODE need_open_link %} {% endcache %} {% endif %}
{% endspaceless %}