{% extends "profiles/base_profile.html" %} {% block profile_menu_friends %}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 friend. {% plural %} {{ user }} has {{ counter }} friends. {% endblocktrans %}

{% for object in object_list %}

{% thumbnail object.user.get_profile.avatar "48x48" as im %} {{ object.user }} {% endthumbnail %} {{ object.to_user }}

{% with object.to_user.get_profile as object %}{% include 'profiles/_profile_info.html' %}{% endwith %}

{% endfor %}
{% load pagination %}{% pagination %} {% else %}

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

{% endif %} {% endblock %}