diff options
author | mykhailo.dubovskyi | 2018-04-18 15:57:53 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-04-20 11:03:47 +0300 |
commit | 842e903d5b987dd23e82a423bddae75acdea0c9c (patch) | |
tree | 59eabfb9969b6cbe00703674f8d3ddb7d2e029e0 /juick-www/src/main/resources/templates/views/partial/message.html | |
parent | ef1c674b0dc1979e46e970ad67ccc7a9bb67b001 (diff) |
Like -> Reaction
Diffstat (limited to 'juick-www/src/main/resources/templates/views/partial/message.html')
-rw-r--r-- | juick-www/src/main/resources/templates/views/partial/message.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-www/src/main/resources/templates/views/partial/message.html b/juick-www/src/main/resources/templates/views/partial/message.html index 2e3667f2..0b6db3df 100644 --- a/juick-www/src/main/resources/templates/views/partial/message.html +++ b/juick-www/src/main/resources/templates/views/partial/message.html @@ -29,7 +29,7 @@ <a href="/{{ msg.mid }}" class="a-like msg-button"> <span class="msg-button-icon"> <i data-icon="ei-heart" data-size="s"></i> - {% if msg.Likes > 0 %} {{ msg.Likes }}{% endif %} + {% if msg.likes > 0 %} {{ msg.likes }}{% endif %} </span> <span> {{ i18n("messages","message.recommend") }}</span> </a> @@ -37,7 +37,7 @@ <a href="/post?body=!+%23{{ msg.mid }}" class="a-like msg-button"> <span class="msg-button-icon"> <i data-icon="ei-heart" data-size="s"></i> - {% if msg.Likes > 0 %} {{ msg.Likes }}{% endif %} + {% if msg.likes > 0 %} {{ msg.likes }}{% endif %} </span> <span> {{ i18n("messages","message.recommend") }}</span> </a> @@ -45,7 +45,7 @@ <a href="/login" class="a-login msg-button"> <span class="msg-button-icon"> <i data-icon="ei-heart" data-size="s"></i> - {% if msg.Likes > 0 %} {{ msg.Likes }}{% endif %} + {% if msg.likes > 0 %} {{ msg.likes }}{% endif %} </span> <span> {{ i18n("messages","message.recommend") }}</span> </a> |