{% extends 'boards/base.html' %} {% load cache %} {% load post_render %} {% load thumbnail %} {% block title %}/{{ thread.board.ln }}/{{ thread.pk }}/:{{ thread.subject }}{% endblock title %} {% block content %}

/{{ thread.board.ln }}/ - {{ thread.board.name }}

[Return] [Catalog] [Bottom] {% if not thread.closed %} {% include 'boards/incl/htmx_hx_update.html' %} {% endif %} [Replies: {{ thread.post_set.all.count }}]

{% if thread.closed %}(Closed){% endif %} {% if thread.archived %}(Archived){% endif %} {% if thread.sticky %}(Sticky){% endif %}

{% if thread.subject %}{{ thread.subject }}{% endif %} {{ thread.author }} {% if thread.tripcode %}{% if thread.secure %}!{% endif %}!{{ thread.tripcode }}{% endif %} posted at {{ thread.timestamp }} {% if not thread.closed %} #{{ thread.pk }} {% else %} #{{ thread.pk }} {% endif %} {% if not thread.sticky and not thread.archived %}

[+] [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 %}
{% for post in thread.post_set.all %} {% include 'boards/incl/reply.html' %} {% endfor %}
[Return] [Catalog] [Top] {% if not thread.closed %} [Update] {% endif %}

{% if not thread.closed %}
[New Reply]
[Scrollback]
{% csrf_token %} {{ form }}
{% endif %} {% endblock content %}