diff options
author | Vitaly Takmazov | 2017-10-25 23:43:14 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-10-25 23:43:14 +0300 |
commit | a0147e7d5a1fad7c0bb3349a1c66657b0b9d1e46 (patch) | |
tree | b8781788a06304d356905f55cebc07b922473a28 /juick-www/src/main/webapp/WEB-INF/views/thread.html | |
parent | 22e98a043c468441d1581a63622947ca11c0122b (diff) |
www: fix recommend template condition
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/thread.html')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/thread.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/thread.html b/juick-www/src/main/webapp/WEB-INF/views/thread.html index 1b1e4384..e45592e2 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/thread.html +++ b/juick-www/src/main/webapp/WEB-INF/views/thread.html @@ -32,8 +32,12 @@ </div> {% endif %} <nav class="l"> - {% if visitor.uid != msg.user.uid %} - {% if visitor.uid > 0 %} + {% if visitor.uid == msg.user.uid %} + <a href="/{{ msg.mid }}" class="a-like"> + <i data-icon="ei-heart" data-size="s"></i> {{ i18n("messages","message.recommend") }} + {% if msg.Likes > 0 %} ({{ msg.Likes }}){% endif %} + </a> + {% elseif visitor.uid > 0 %} <a href="/post?body=!+%23{{ msg.mid }}" class="a-like"> <i data-icon="ei-heart" data-size="s"></i> {{ i18n("messages","message.recommend") }} {% if msg.Likes > 0 %} ({{ msg.Likes }}){% endif %} @@ -44,7 +48,6 @@ {% if msg.Likes > 0 %} ({{ msg.Likes }}){% endif %} </a> {% endif %} - {% endif %} {% if (visitor.uid > 0 and not msg.ReadOnly) or (visitor.uid == msg.user.uid) %} <a href="#" class="msg-menu"><i data-icon="ei-link" data-size="s"></i> Share</a> {% endif %} |