mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
9 lines
370 B
HTML
9 lines
370 B
HTML
{% 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>
|
|
</a>
|
|
{% else %}
|
|
<a title="Like" hx-post="{{ post.urls.action_like }}" hx-swap="outerHTML" role="menuitem">
|
|
<i class="fa-solid fa-star"></i>
|
|
</a>
|
|
{% endif %}
|