{% extends "templates/base.html" %} {% block head %} {% endblock %} {% block main_content %}

{{post.user.name}} posted in /{{post.board.name}}/

posted at {{post.created_at}}

{% if post.reference and post.reference.show %}

ref post: {{post.reference.short_content}}

{% endif %} {% if post.attachments %}

{{post.attachments|length}} attachments

{% for attachment in post.attachments %} {% if attachment.type == "image" %} {{attachment.file_name}} {% elif attachment.type == "video" %} {% elif attachment.type == "audio" %} {% else %} {{attachment.file_name}} {% endif %} {% endfor %}
{% endif %}

{{post.content}}

{% if session.name == "SYSTEM" %} Delete {% elif session.name == post.user.name %} Delete {% endif %}
{% if session.user_id %}

Reply to this post

{% endif %}

{{ post.replies }} Replies

{% if total_pages > 0 %} {% endif %} {% endblock %}