{% 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.images.exists %} {% with post.images.all.0 as image %} {% endwith %} {% endif %}
{% autoescape off %} {% if truncated %} {{ post.text.rendered|truncatewords_html:50 }} {% else %} {{ post.text.rendered }} {% endif %} {% endautoescape %} {% if post.is_referenced %}
{% autoescape off %} {% trans "Replies" %}: {{ post.refmap }} {% endautoescape %}
{% endif %}
{% endcache %} {% if is_opening %} {% cache 600 post_thread thread.id thread.last_edit_time LANGUAGE_CODE need_open_link %} {% endcache %} {% endif %}
{% endspaceless %}