14 lines
532 B
HTML
14 lines
532 B
HTML
{%load static %}
|
|
{% load i18n %}
|
|
|
|
{% if request.user %}
|
|
{% if place in request.user.explorer.favorite_places.all %}
|
|
<a href="{% url 'place_unfavorite' place_id=place.id %}" class="LP-Link" title="{% trans 'Remove from favorites' %}">
|
|
<img class="LP-Icon" src="{% static '/icons/favorite_filled.svg' %}" />
|
|
</a>
|
|
{%else%}
|
|
<a href="{% url 'place_favorite' place_id=place.id %}" class="LP-Link" title="{% trans 'Save as favorite' %}">
|
|
<img class="LP-Icon" src="{% static '/icons/favorite.svg' %}" />
|
|
</a>
|
|
{% endif %}
|
|
{% endif %} |