* adds the ability to remove a user from your followers list * fixes verbs.Reject to process reject activities for previously accepted follows in both directions fixes #2635
38 lines
894 B
HTML
38 lines
894 B
HTML
{% extends 'user/relationships/layout.html' %}
|
|
{% load utilities %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% trans "Followers" %} - {{ user|username }}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1 class="title">
|
|
{% trans "Followers" %}
|
|
</h1>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
<nav class="breadcrumb subtitle" aria-label="breadcrumbs">
|
|
<ul>
|
|
<li><a href="{% url 'user-feed' user|username %}">{% trans "User profile" %}</a></li>
|
|
<li class="is-active">
|
|
<a href="#" aria-current="page">
|
|
{% trans "Followers" %}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|
|
|
|
{% block panel %}
|
|
{% with followers_page=True %}
|
|
{{ block.super }}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block nullstate %}
|
|
<div>
|
|
<em>{% blocktrans with username=user.display_name %}{{ username }} has no followers{% endblocktrans %}</em>
|
|
</div>
|
|
{% endblock %}
|