{% extends 'layout.html' %} {% load humanize %} {% load bookwyrm_tags %} {% block content %}
{% block header %}{% endblock %}
{# user bio #}
{% if user.summary %}
{{ user.summary | to_markdown | safe }}
{% endif %}
{% if not is_self and request.user.is_authenticated %}
{% include 'snippets/follow_button.html' with user=user %}
{% include 'snippets/user_options.html' with user=user class="is-small" %}
{% 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 %}
{% block panel %}{% endblock %} {% endblock %}