aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/views/partial/tagcolumn.html
blob: a7728ef303f52dde02bb446c9096b5c38f240381 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div id="ctitle">
    <h2>*{{ tag.name }}</h2>
</div>
{% if visitor is not empty and visitor.uid > 0 %}
<div class="toolbar">
    {% if isSubscribed %}
    <a href="/post?body=U+%2A{{ tag.name }}" title="Подписан">
        <i data-icon="ei-check" data-size="s"></i>Subscribed
    </a>
    {% else %}
    <a href="/post?body=S+%2A{{ tag.name }}" title="Подписаться">
        <i data-icon="ei-plus" data-size="s"></i>Subscribe
    </a>
    {% endif %}
    {% if isInBL %}
    <a href="/post?body=BL+%2A{{ tag.name }}" title="Разблокировать">
        <i data-icon="ei-close-o" data-size="s"></i>Unblock
    </a>
    {% else %}
    <a href="/post?body=BL+%2A{{ tag.name }}" title="Заблокировать">
        <i data-icon="ei-close" data-size="s"></i>Block
    </a>
    {% endif %}
</div>
{% endif %}
{% include "views/partial/footer" %}