{% if post.poster %}
{% include "misago/user_state.html" with user=post.poster state=post.poster.online_state %}
{{ post.poster }}
{% if post.poster.short_title %}
{{ post.poster.short_title }}
{% endif %}
{% else %}
{{ post.poster_name }}
{% endif %}
–
{{ post.posted_on|date }}
{% if not post.is_read %}
{% trans "New" %}
{% endif %}
#{{ page.start_index|add:forloop.counter0 }}
{% if post.is_moderated %}
{% if post.id == thread.first_post_id %}
{% trans "This thread won't be visible to other users until its approved by moderator." %}
{% else %}
{% trans "This post won't be visible to other users until its approved by moderator." %}
{% endif %}
{% endif %}
{% if post.is_reported %}
{% trans "This post was reported to moderators." %}
{% endif %}
{% if post.is_valid %}
{{ post.parsed|safe }}
{% else %}
{% trans "Post can't be displayed due to invalid message checksum." %}
{% endif %}
{% if post.events %}
{% include "misago/thread/events.html" %}
{% endif %}