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

File last commit:

r1743:09e77ade default
r1967:55baa280 default
Show More
random.html
35 lines | 1.0 KiB | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% block head %}
<title>{% trans 'Random images' %} - {{ site_name }}</title>
{% endblock %}
{% block content %}
{% if images %}
<div id="posts-table" class="random-images-table">
<div>
{% for image in images %}
<div class="gallery_image">
{{ image.get_view|safe }}
{% with image.get_random_associated_post as post %}
{{ post.get_link_view|safe }}
<div>
{% for tag in post.get_thread.get_required_tags.all %}
{{ tag.get_view|safe }}{% if not forloop.last %},{% endif %}
{% endfor %}
</div>
{% endwith %}
</div>
{% if forloop.counter|divisibleby:"3" %}
</div>
<div>
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% endblock %}