{% extends "profiles/base_profile.html" %} {% block profile_menu_favorites %}current{% endblock %} {% block content %} {% if object_list %}

{% blocktrans count object_list.count as counter and object.user.first_name as user %} {{ user }} has only one favorite post. {% plural %} {{ user }} has {{ counter }} favorite posts. {% endblocktrans %}

{% for object in object_list %}
{% with object.node as object %} {% include "nodes/_list.html" %} {% endwith %}
{% endfor %} {% load pagination %}{% pagination %} {% else %}

{% trans 'Not found any record.' %}

{% endif %} {% endblock %}