##// END OF EJS Templates
Added postmark for 3gp
Added postmark for 3gp

File last commit:

r1812:f2a9c571 default
r1967:55baa280 default
Show More
thread_gallery.html
38 lines | 1.2 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 %}
{% for image in post.get_images %}
<div class="gallery_image">
{% autoescape off %}
{{ image.get_view }}
<div class="gallery_image_metadata">
{{ image.get_size.0 }}x{{ image.get_size.1 }}
<br />
<a href="{{ post.get_absolute_url }}">>>{{ post.id }}</a>
</div>
{% endautoescape %}
</div>
{% endfor %}
{% endfor %}
{% else %}
{% trans 'No images.' %}
{% endif %}
</div>
{% endblock %}