mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-11 01:41:05 +00:00
11 lines
469 B
HTML
11 lines
469 B
HTML
<span class="post-action">
|
|
{% if post.pk in interactions.like %}
|
|
<a title="Unlike" class="active" hx-post="{{ post.urls.action_unlike }}" hx-swap="outerHTML" role="menuitem">
|
|
<i class="fa-solid fa-star"></i> {{ event.like_count }}
|
|
</a>
|
|
{% else %}
|
|
<a title="Like" hx-post="{{ post.urls.action_like }}" hx-swap="outerHTML" role="menuitem">
|
|
<i class="fa-solid fa-star"></i> {{ event.like_count }}
|
|
</a>
|
|
{% endif %}
|
|
</span>
|