{% extends 'friends/base.html' %} {% load core_tags_and_filters %} {% load i18n %} {% block user_menu_friends_class %}active{% endblock %} {% block tab_content %}
{% for friendship in friends %} {% include 'profiles/user_list_item.html' with user=friendship.from_user %} {% empty %}
{% include 'friends/you_dont_have_any_friends_trans.html' %}
{% endfor %}
{% pagination %} {% endblock %}