##// END OF EJS Templates
Feed of posts for the specific IP (works only for moderators who can delete posts)
Feed of posts for the specific IP (works only for moderators who can delete posts)

File last commit:

r1601:24ed0df7 default
r1641:d57d7e7e default
Show More
thread_gallery.html
39 lines | 1.3 KiB | text/html | HtmlLexer
{% extends "boards/thread.html" %}
{% load i18n %}
{% load static from staticfiles %}
{% load board %}
{% load tz %}
{% block head %}
<meta name="robots" content="noindex">
<title>{{ thread.get_opening_post.get_title|striptags|truncatewords:10 }}
- {{ site_name }}</title>
{% endblock %}
{% block thread_content %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_timezone as TIME_ZONE %}
<div id="posts-table">
{% if posts %}
{% for post in posts %}
<div class="gallery_image">
{% with post.get_first_image as image %}
{% autoescape off %}
{{ image.get_view }}
<div class="gallery_image_metadata">
{{ image.get_size.0 }}x{{ image.get_size.1 }}
{% image_actions image.file.url request.get_host %}
<br />
<a href="{{ post.get_absolute_url }}">>>{{ post.id }}</a>
</div>
{% endautoescape %}
{% endwith %}
</div>
{% endfor %}
{% else %}
{% trans 'No images.' %}
{% endif %}
</div>
{% endblock %}