2017-08-28 14:29:11 +02:00
|
|
|
|
|
|
|
<div class="wall-item-actions" id="wall-item-like-buttons-{{$id}}">
|
2020-11-21 17:10:04 +01:00
|
|
|
<button type="button"
|
|
|
|
class="btn-link button-likes{{if $responses.like.self}} active" aria-pressed="true{{/if}}" id="like-{{$id}}"
|
|
|
|
title="{{$like_title}}"
|
2021-01-30 22:42:34 +01:00
|
|
|
onclick="doActivityItemAction({{$id}}, 'like'{{if $responses.like.self}}, true{{/if}});"
|
2020-11-21 17:10:04 +01:00
|
|
|
data-toggle="button">
|
|
|
|
<i class="fa fa-thumbs-up" aria-hidden="true"></i> {{$like}}
|
2018-08-18 23:47:04 +02:00
|
|
|
</button>
|
2020-11-21 17:10:04 +01:00
|
|
|
{{if !$hide_dislike}}
|
|
|
|
<span class="icon-padding"> </span>
|
|
|
|
<button type="button"
|
|
|
|
class="btn-link button-likes{{if $responses.dislike.self}} active" aria-pressed="true{{/if}}"
|
|
|
|
id="dislike-{{$id}}"
|
|
|
|
title="{{$dislike_title}}"
|
2021-01-30 22:42:34 +01:00
|
|
|
onclick="doActivityItemAction({{$id}}, 'dislike'{{if $responses.dislike.self}}, true{{/if}});"
|
2020-11-21 17:10:04 +01:00
|
|
|
data-toggle="button"><i class="fa fa-thumbs-down" aria-hidden="true"></i> {{$dislike}}
|
2018-08-18 23:47:04 +02:00
|
|
|
</button>
|
2017-08-28 14:29:11 +02:00
|
|
|
{{/if}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<img id="like-rotator-{{$id}}" class="like-rotator" src="images/rotator.gif" alt="{{$wait}}" title="{{$wait}}" style="display: none;" />
|
2017-08-28 14:29:11 +02:00
|
|
|
</div>
|