2020-12-12 21:25:04 -05:00
|
|
|
{% load bookwyrm_tags %}
|
2021-02-27 21:48:10 -05:00
|
|
|
{% load i18n %}
|
2020-11-07 21:59:38 -05:00
|
|
|
{% with status.id|uuid as uuid %}
|
2021-04-07 11:31:00 -04:00
|
|
|
<form name="favorite" action="/favorite/{{ status.id }}" method="POST" class="interaction fav-{{ status.id }}-{{ uuid }} {% if request.user|liked:status %}is-hidden{% endif %}" data-id="fav-{{ status.id }}-{{ uuid }}">
|
2020-11-05 14:40:03 -05:00
|
|
|
{% csrf_token %}
|
2021-04-21 16:32:14 -04:00
|
|
|
<button class="button is-small is-light is-transparent" type="submit">
|
|
|
|
<span class="icon icon-heart m-0-mobile" title="{% trans 'Like' %}">
|
2020-11-05 14:40:03 -05:00
|
|
|
</span>
|
2021-04-21 16:32:14 -04:00
|
|
|
<span class="is-sr-only-mobile">{% trans "Like" %}</span>
|
2020-11-05 14:40:03 -05:00
|
|
|
</button>
|
|
|
|
</form>
|
2021-04-07 11:31:00 -04:00
|
|
|
<form name="unfavorite" action="/unfavorite/{{ status.id }}" method="POST" class="interaction fav-{{ status.id }}-{{ uuid }} active {% if not request.user|liked:status %}is-hidden{% endif %}" data-id="fav-{{ status.id }}-{{ uuid }}">
|
2020-11-05 14:40:03 -05:00
|
|
|
{% 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>
|
2020-11-05 14:40:03 -05:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{% endwith %}
|