takahe/templates/activities/_boost.html

10 lines
559 B
HTML
Raw Normal View History

2022-12-21 18:40:46 -08:00
{% if post.pk in interactions.boost %}
<a title="Unboost" class="active" hx-post="{{ post.urls.action_unboost }}" hx-swap="outerHTML">
2022-12-21 20:12:42 -08: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-21 18:40:46 -08:00
</a>
{% else %}
<a title="Boost" hx-post="{{ post.urls.action_boost }}" hx-swap="outerHTML">
2022-12-21 20:12:42 -08: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-21 18:40:46 -08:00
</a>
{% endif %}