{% extends "boards/base.html" %} {% load i18n %} {% load cache %} {% load static from staticfiles %} {% load board %} {% block head %} Neboard - {{ thread.get_opening_post.get_title }} {% endblock %} {% block content %} {% spaceless %} {% get_current_language as LANGUAGE_CODE %} {% cache 600 thread_gallery_view thread.id thread.last_edit_time LANGUAGE_CODE %}
{% trans 'Normal mode' %}, {% trans 'Gallery mode' %}
{% for post in thread.get_replies %} {% if post.image %} {% endif %} {% endfor %}
{% 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 }} {% trans 'replies' %}, {{ thread.get_images_count }} {% trans 'images' %}. {% trans 'Last update: ' %}{{ thread.last_edit_time }} [RSS] {% endcache %} {% endblock %}