takahe/templates/activities/_like.html

10 lines
370 B
HTML
Raw Normal View History

{% if post.pk in interactions.like %}
2022-12-07 16:12:43 +00:00
<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 %}
2022-12-07 16:12:43 +00:00
<a title="Like" hx-post="{{ post.urls.action_like }}" hx-swap="outerHTML" role="menuitem">
<i class="fa-solid fa-star"></i>
</a>
{% endif %}