diff options
author | Vitaly Takmazov | 2019-02-26 14:48:02 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-02-26 15:03:20 +0300 |
commit | dafee9c471e154e375cca19f5e96c9c6fc89033f (patch) | |
tree | 1f21d9545906fa010d961d55a9090867a7055664 /src/main/resources/templates | |
parent | 8531d6c7dd1acb4fdeddc5bad926b61e492ca1b4 (diff) |
Display federated likes
Diffstat (limited to 'src/main/resources/templates')
-rw-r--r-- | src/main/resources/templates/views/thread.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html index 47dfd000..90c9d4a0 100644 --- a/src/main/resources/templates/views/thread.html +++ b/src/main/resources/templates/views/thread.html @@ -99,7 +99,11 @@ {% if recomm is not empty %} <div class="msg-recomms">{{ i18n("messages","message.recommendedBy") }} {% for rec in recomm %} - <a href="/{{ rec }}/">@{{ rec }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} + {% if rec.uri.toString() is empty %} + <a href="/{{ rec.name }}/">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} + {% else %} + <a href="{{ rec.uri }}" data-user-uri="1">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} + {% endif %} {% endfor %} {% if msg.likes > recomm.size() %} {{ i18n("messages","message.recommendedOthers", msg.likes - recomm.size()) }} |