{% extends 'base.html' %}

{% block content %}
<h2>{% trans %}Follow requests{% endtrans %}</h2>
<ul>
    {% for req in requests %}
    <li>
        {{ req.follower }}
        <a href="{{ url_for('accept_follow', follower_id=req.follower_id) }}">{% trans %}Accept{% endtrans %}</a>
    </li>
    {% endfor %}
</ul>
{% endblock content %}