aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/partial/usercolumn.html
blob: 0906218a3113dab9faa91a6476bbdb29b3584b6f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<div id="ctitle">
    <a href="/{{ user.name }}">
        <img src="//i.juick.com/a/{{ user.uid }}.png" alt=""/>{{ user.name }}
    </a>
    <div id="column-expander" tabindex="0"><i data-icon="ei-chevron-down" data-size="s"></i></div>
</div>
{% if visitor is not empty and visitor.uid > 0 and visitor.uid != user.uid %}
<ul class="toolbar">
    {% if isSubscribed %}
    <li>
        <a href="/post?body=U+%40{{ user.name }}" title="Подписан">
            <i data-icon="ei-check" data-size="s"></i>Subscribed
        </a>
    </li>
    {% else %}
    <li>
        <a href="/post?body=S+%40{{ user.name }}" title="Подписаться">
            <i data-icon="ei-plus" data-size="s"></i>Subscribe
        </a>
    </li>
    {% endif %}
    {% if isInBL %}
    <li>
        <a href="/post?body=BL+%40{{ user.name }}" title="Разблокировать">
            <i data-icon="ei-close-o" data-size="s"></i>Unblock
        </a>
    </li>
    {% else %}
    <li>
        <a href="/post?body=BL+%40{{ user.name }}" title="Заблокировать">
            <i data-icon="ei-close" data-size="s"></i>Block
        </a>
    </li>
    {% endif %}
    {% if not isInBLAny %}
    <li>
        <a href="/pm/sent?uname={{ user.name }}" title="Написать приватное сообщение">
            <i data-icon="ei-envelope" data-size="s"></i>PM
        </a>
    </li>
    {% endif %}
</ul>
{% else %}
<hr/>
{% endif %}
<ul>
    <li><a href="/{{ user.name }}/?show=recomm" rel="nofollow"><i data-icon="ei-heart" data-size="s"></i>{{ i18n("messages","blog.recommendations") }}</a></li>
    <li><a href="/{{ user.name }}/?show=photos" rel="nofollow"><i data-icon="ei-camera" data-size="s"></i>{{ i18n("messages","blog.photos") }}</a></li>
</ul>
<hr/>
<form action="/{{ user.name }}/">
    <p><input type="text" name="search" class="inp" placeholder="{{ i18n('messages','label.search') }}"/></p>
</form>
{% include "views/partial/usertags" %}
<hr/>
<div id="ustats">
    <ul>
        <li><a href="/{{ user.name }}/friends">{{ i18n("messages","blog.iread") }}: {{ statsIRead }}</a></li>
        <li><a href="/{{ user.name }}/readers">{{ i18n("messages","blog.readers") }}: {{ statsMyReaders }}</a></li>
        {% if statsMyBL > 0 and visitor.uid == user.uid %}
        <li><a href="/{{ user.name }}/bl">{{ i18n("messages","blog.bl") }}: {{ statsMyBL }}</a></li>
        {% endif %}
        <li>{{ i18n("messages","blog.messages") }}: {{ statsMessages }}</li>
        <li>{{ i18n("messages","blog.comments") }}: {{ statsReplies }}</li>
    </ul>
    {% if iread is not empty %}
    <div class="iread">
        {% for u in iread %}
        <span>
            <a href="/{{ u.name }}/">
                <img src="//i.juick.com/as/{{ u.uid }}.png" alt="{{ u.name }}"/>
            </a>
        </span>
        {% endfor %}
    </div>
    {% endif %}

</div>