{% extends '__layout__.html' %} {% block title %}{{profile.username}}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{profile.username}}'s Friends

Friends ( {{FriendCount}} )

{% for friend in FriendUsers: %}
{{friend.username}} {{friend.username}} {% if currentuser.id == profile.id %} {%endif%}
{%endfor%}
{% if len(FriendUsers) <= 0: %}

No results found

{% endif %}
Previous

Page {{PageNumber}} of {{TotalPages}}

Next
{% endblock %}