bookwyrm/bookwyrm/templates/user/relationships/followers.html

39 lines
894 B
HTML
Raw Normal View History

{% extends 'user/relationships/layout.html' %}
{% load utilities %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2020-11-10 21:39:37 +00:00
{% block title %}
{% trans "Followers" %} - {{ user|username }}
{% endblock %}
2021-01-29 17:05:53 +00:00
{% block header %}
<h1 class="title">
{% trans "Followers" %}
2021-01-29 17:05:53 +00:00
</h1>
{% endblock %}
2020-03-17 00:09:45 +00:00
{% 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>
2021-09-29 00:30:58 +00:00
<em>{% blocktrans with username=user.display_name %}{{ username }} has no followers{% endblocktrans %}</em>
2020-03-17 00:09:45 +00:00
</div>
{% endblock %}