forked from gergely/calendar-social
24 lines
682 B
HTML
24 lines
682 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{% trans %}Follow requests{% endtrans %}</h2>
|
|
{% if requests.count() %}
|
|
<ul>
|
|
{% for req in requests %}
|
|
<li>
|
|
{{ req.follower }}
|
|
<a href="{{ url_for('account.accept_follow', follower_id=req.follower_id) }}" class="ui button">{% trans %}Accept{% endtrans %}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
{% trans %}No requests to display.{% endtrans %}
|
|
{% endif %}
|
|
{% if not current_user.profile.locked %}
|
|
<p>
|
|
{% trans %}Your profile is not locked.{% endtrans %}
|
|
{% trans %}Anyone can follow you without your consent.{% endtrans %}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock content %}
|