{% extends 'base_site.html' %} {% load core_tags_and_filters %} {% load i18n %} {% block title %}{% translate 'Likes' %} / {% block site_title %}{{ block.super }}{% endblock %}{% endblock %} {% block google_ads %} {% if LANGUAGE_CODE in settings.LANGUAGES_WITH_ADS %} {% if request.user.is_anonymous or request.user.display_ads %} {% endif %} {% endif %} {% endblock %} {% block user_menu_likes_class %}active{% endblock %} {% block content %}
{% for like in like_list %} {% if display == 'from' %} {% include 'profiles/user_list_item.html' with user=like.from_user %} {% elif display == 'to' %} {% include 'profiles/user_list_item.html' with user=like.to_user %} {% endif %} {% empty %}
{% translate 'You have no likes here.' context user.speedy_match_profile.get_like_gender %}
{% endfor %}
{% pagination %} {% endblock %}