moviewyrm/bookwyrm/templates/snippets/fav_button.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2021-05-11 21:41:28 +00:00
{% load interaction %}
{% load utilities %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-05-11 21:41:28 +00:00
2020-11-08 02:59:38 +00:00
{% with status.id|uuid as uuid %}
{% with request.user|liked:status as liked %}
2021-08-23 20:02:27 +00:00
<form
name="favorite"
2021-08-23 20:15:35 +00:00
action="{% url 'fav' status.id %}"
2021-08-23 20:02:27 +00: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 20:32:14 +00:00
<button class="button is-small is-light is-transparent" type="submit">
2021-08-23 20:02:27 +00:00
<span class="icon icon-heart m-0-mobile" title="{% trans 'Like' %}"></span>
2021-04-21 20:32:14 +00:00
<span class="is-sr-only-mobile">{% trans "Like" %}</span>
</button>
</form>
2021-08-23 20:02:27 +00:00
<form
name="unfavorite"
2021-08-23 20:15:35 +00:00
action="{% url 'unfav' status.id %}"
2021-08-23 20:02:27 +00: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 20:32:14 +00: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 %}