2022-12-21 18:40:46 -08:00
|
|
|
{% if post.pk in interactions.like %}
|
2023-01-08 11:20:05 -08:00
|
|
|
<a title="Unlike" class="active" hx-trigger="click, keyup[key=='Enter']" hx-post="{{ post.urls.action_unlike }}" hx-swap="outerHTML" role="menuitem" tabindex="0">
|
2022-12-23 21:16:26 -08:00
|
|
|
<i class="fa-solid fa-star"></i>
|
2022-12-31 12:48:35 -08:00
|
|
|
<span class="like-count">{{ post.stats_with_defaults.likes }}</span>
|
2022-12-21 18:40:46 -08:00
|
|
|
</a>
|
|
|
|
{% else %}
|
2023-01-08 11:20:05 -08:00
|
|
|
<a title="Like" hx-trigger="click, keyup[key=='Enter']" hx-post="{{ post.urls.action_like }}" hx-swap="outerHTML" role="menuitem" tabindex="0">
|
2022-12-23 21:16:26 -08:00
|
|
|
<i class="fa-solid fa-star"></i>
|
2022-12-31 12:48:35 -08:00
|
|
|
<span class="like-count">{{ post.stats_with_defaults.likes }}</span>
|
2022-12-21 18:40:46 -08:00
|
|
|
</a>
|
|
|
|
{% endif %}
|