takahe/templates/activities/_boost.html

10 lines
559 B
HTML
Raw Normal View History

2022-12-22 02:40:46 +00:00
{% if post.pk in interactions.boost %}
<a title="Unboost" class="active" hx-post="{{ post.urls.action_unboost }}" hx-swap="outerHTML">
2022-12-22 04:12:42 +00:00
<i class="fa-solid fa-retweet"></i> {% if event.boost_count is not None %}{{ event.boost_count }}{% else %}{{ post.boost_count }}{% endif %}
2022-12-22 02:40:46 +00:00
</a>
{% else %}
<a title="Boost" hx-post="{{ post.urls.action_boost }}" hx-swap="outerHTML">
2022-12-22 04:12:42 +00:00
<i class="fa-solid fa-retweet"></i> {% if event.boost_count is not None %}{{ event.boost_count }}{% else %}{{ post.boost_count }}{% endif %}
2022-12-22 02:40:46 +00:00
</a>
{% endif %}