bookwyrm-mastodon/bookwyrm/templates/snippets/fav_button.html

36 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2021-05-11 17:41:28 -04:00
{% load interaction %}
{% load utilities %}
2021-02-27 21:48:10 -05:00
{% load i18n %}
2021-05-11 17:41:28 -04:00
2020-11-07 21:59:38 -05:00
{% with status.id|uuid as uuid %}
{% with request.user|liked:status as liked %}
2021-08-23 16:02:27 -04:00
<form
name="favorite"
2021-08-23 16:15:35 -04:00
action="{% url 'fav' status.id %}"
2021-08-23 16:02:27 -04:00
method="POST"
class="interaction fav_{{ status.id }}_{{ uuid }} {% if liked %}is-hidden{% endif %}"
data-id="fav_{{ status.id }}_{{ uuid }}"
>
{% csrf_token %}
2021-04-21 16:32:14 -04:00
<button class="button is-small is-light is-transparent" type="submit">
2021-08-23 16:02:27 -04:00
<span class="icon icon-heart m-0-mobile" title="{% trans 'Like' %}"></span>
2021-04-21 16:32:14 -04:00
<span class="is-sr-only-mobile">{% trans "Like" %}</span>
</button>
</form>
2021-08-23 16:02:27 -04:00
<form
name="unfavorite"
2021-08-23 16:15:35 -04:00
action="{% url 'unfav' status.id %}"
2021-08-23 16:02:27 -04:00
method="POST"
class="interaction fav_{{ status.id }}_{{ uuid }} active {% if not liked %}is-hidden{% endif %}"
data-id="fav_{{ status.id }}_{{ uuid }}"
>
{% csrf_token %}
2021-04-21 16:32:14 -04:00
<button class="button is-light is-transparent is-small" type="submit">
<span class="icon icon-heart has-text-primary m-0-mobile" title="{% trans 'Un-like' %}"></span>
<span class="is-sr-only-mobile">{% trans "Un-like" %}</span>
</button>
</form>
{% endwith %}
{% endwith %}