{% extends "boards/base.html" %} {% load i18n %} {% load cache %} {% load static from staticfiles %} {% load board %} {% block head %} {{ opening_post.get_title|striptags|truncatewords:10 }} - {{ site_name }} {% endblock %} {% block content %} {% spaceless %} {% get_current_language as LANGUAGE_CODE %} {% cache 600 thread_view thread.id thread.last_edit_time moderator LANGUAGE_CODE %}
{% trans 'Normal mode' %}, {% trans 'Gallery mode' %}
{% if bumpable %}
{{ posts_left }} {% trans 'posts to bumplimit' %}
{% endif %}
{% with can_bump=thread.can_bump %} {% for post in thread.get_replies %} {% if forloop.first %} {% post_view post moderator=moderator is_opening=True thread=thread can_bump=can_bump opening_post_id=opening_post.id %} {% else %} {% post_view post moderator=moderator is_opening=False thread=thread can_bump=can_bump opening_post_id=opening_post.id %} {% endif %} {% endfor %} {% endwith %}
{% if not thread.archived %}
{% trans "Reply to thread" %} #{{ opening_post.id }}
{% csrf_token %}
{{ form.as_div }}
{% trans 'Switch mode' %}
{% trans 'Text syntax' %}
{% endif %} {% endcache %} {% endspaceless %} {% endblock %} {% block metapanel %} {% get_current_language as LANGUAGE_CODE %} {% cache 600 thread_meta thread.last_edit_time moderator LANGUAGE_CODE %} {{ thread.get_reply_count }}/{{ max_replies }} {% trans 'messages' %}, {{ thread.get_images_count }} {% trans 'images' %}. {% trans 'Last update: ' %}{{ thread.last_edit_time }} [RSS] {% endcache %} {% endblock %}