{% load humanize %} {% load fr_display %}
{% if user.summary %}
{{ user.summary | safe }}
{% endif %}
{% if not is_self %} {% include 'snippets/follow_button.html' with user=user %} {% endif %} {% if is_self and user.follower_requests.all %}

Follow Requests

{% for requester in user.follower_requests.all %}

{% include 'snippets/username.html' with user=requester show_full=True %}

{% include 'snippets/follow_request_buttons.html' with user=requester %}
{% endfor %}
{% endif %}