{% load cache %} {% load post_render %} {% load thumbnail %} {% include 'boards/incl/htmx_hx_update.html' %} {% for thread, replies in posts.items %}

{% if thread.subject %}{{ thread.subject }}{% endif %} {{ thread.author }} {% if thread.tripcode %}{% if thread.secure %}!{% endif %}!{{ thread.tripcode }}{% endif %} posted at {{ thread.timestamp }} {% if not board %} on /{{ thread.board.ln }}/ {% endif %} #{{ thread.pk }} {% if thread.sticky %}(S){% else %}

[+] [Delete] [Report]
{% endif %}

{% if thread.image %}
(File) {{ thread.image.size|filesizeformat }} | {{ thread.image.width }}x{{ thread.image.height }} | {{ thread.filename }}
{% endif %} {% cache 500 post thread.pk %}
{% if thread.image %} {% thumbnail thread.image "x300" as im %} {% endthumbnail %}

{% post_render thread %}

{% else %}

{% post_render thread %}

{% endif %}
{% endcache %}

[Replies: {{ thread.post_set.all.count }}] [Visit]

{% for post in replies %} {% include 'boards/incl/reply.html' %} {% endfor %}
{% empty %}

No threads yet.

{% endfor %}