diff options
author | Vitaly Takmazov | 2017-05-04 14:22:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-05-05 12:07:44 +0300 |
commit | 3ec1ccf563008338197dc3e306551ef1f8e8362e (patch) | |
tree | e66fd5af0202fdd44483a0fae7be2fa9df4f498a /juick-www/src/main/webapp | |
parent | 761be4433bd74f476a9e36c3f898202a3003fdaf (diff) |
juick-www: fix bl
Diffstat (limited to 'juick-www/src/main/webapp')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/index.html | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/index.html b/juick-www/src/main/webapp/WEB-INF/views/index.html index 04ae32bd..a17a15e7 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/index.html +++ b/juick-www/src/main/webapp/WEB-INF/views/index.html @@ -26,21 +26,27 @@ </div> </header> - {%if msg.AttachmentType is not empty %} + {% if msg.AttachmentType is not empty %} <p class="ir"><a href="//i.juick.com/photos-512/{{ msg.getMid() }}.{{ msg.AttachmentType }}" onclick="return showPhotoDialog('{{ msg.getMid() }}.{{ msg.AttachmentType }}')"> <img src="//i.juick.com/photos-512/{{ msg.getMid() }}.{{ msg.AttachmentType }}" alt=""/></a> </p> {% endif %} <p>{{ msg | formatMessage }}</p> - {%if msg.AttachmentType is not empty %} + {% if msg.AttachmentType is not empty %} <div class="irbr"></div> {% endif %} {% if not readonly %} <nav class="l"> - <a href="#" class="a-like">Мне нравится</a> - {% if msg.VisitorCanComment %} - <a href="#" class="a-comment">Комментировать</a> + {% if visitor.uid > 0 %} + <a href="/post?body=!+%23{{ msg.getMid() }}" class="a-like">Рекомендовать</a> + {% else %} + <a href="/login" class="a-login">Рекомендовать</a> + {% endif %} + {% if visitor.uid > 0 and (not msg.ReadOnly or visitor.uid == msg.user.uid) %} + <a href="/{{ msg.getMid() }}" class="a-comment">Комментировать</a> + {% elseif visitor.uid == 0 and not msg.ReadOnly %} + <a href="/login" class="a-login">Комментировать</a> {% endif %} {% if msg.FriendsOnly %} <a href="#" class="a-privacy">Открыть доступ</a> |