{% macro render(board_name, thread, post_item, snippet=False, is_locked=False, is_sticky=False) %}
{% if post_item.has_file %}
{% endif %}
{{ post_item.date|post_time }} {% if post_item.subject %} {{ post_item.subject }}
{% endif %}
{% if post_item.html or post_item.text %}
{# Render both the cached version and the model #} {% if post_item.html %} {{ post_item.html|safe }} {% else %} {{ post_item.text|post_text }} {% endif %}
{% endif %} {% if thread.original_length > 1 %}
{{ thread.original_length - 1 }} {{ (thread.original_length - 1)|pluralize('reply', 'replies') }}
{% endif %} [View thread]
{% endmacro %}