##// END OF EJS Templates
Added local stickers feature
Added local stickers feature

File last commit:

r1940:1f7b0788 default
r1940:1f7b0788 default
Show More
aliases.html
33 lines | 1.1 KiB | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% load tz %}
{% block head %}
<meta name="robots" content="noindex">
<title>{% trans "Stickers" %} - {{ site_name }}</title>
{% endblock %}
{% block content %}
<div id="posts-table">
{% if local_stickers %}
<h1>{% trans "Local stickers" %}</h1>
{% for sticker in local_stickers %}
<div class="gallery_image">
{{ sticker.attachment.get_view|safe }}
<div>{{ sticker.name }}</div>
<div><a href="?action=remove&name={{ sticker.name }}">{% trans "Remove sticker" %}</a></div>
</div>
{% endfor %}
{% endif %}
{% if global_stickers %}
<h1>{% trans "Global stickers" %}</h1>
{% for sticker in global_stickers %}
<div class="gallery_image">
{{ sticker.attachment.get_view|safe }}
<div>{{ sticker.name }}</div>
</div>
{% endfor %}
{% endif %}
</div>
{% endblock %}