2021-06-14 16:57:51 +00:00
|
|
|
{% extends 'preferences/layout.html' %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-01-26 17:56:01 +00:00
|
|
|
|
2021-02-28 18:00:36 +00:00
|
|
|
{% block title %}{% trans "Blocked Users" %}{{ author.name }}{% endblock %}
|
|
|
|
|
2021-01-26 17:56:01 +00:00
|
|
|
{% block header %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% trans "Blocked Users" %}
|
2021-01-26 17:56:01 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block panel %}
|
2021-01-26 21:02:04 +00:00
|
|
|
{% if not request.user.blocks.exists %}
|
2021-02-28 02:48:10 +00:00
|
|
|
<p>{% trans "No users currently blocked." %}</p>
|
2021-01-26 21:02:04 +00:00
|
|
|
{% else %}
|
2021-01-26 17:56:01 +00:00
|
|
|
<ul>
|
|
|
|
{% for user in request.user.blocks.all %}
|
|
|
|
<li class="is-flex">
|
|
|
|
<p>
|
2021-03-07 18:24:46 +00:00
|
|
|
<a href="{{ user.local_path }}">{% include 'snippets/avatar.html' with user=user %} {{ user.display_name }}</a>
|
2021-01-26 17:56:01 +00:00
|
|
|
</p>
|
|
|
|
<p class="mr-2">
|
2021-05-23 03:36:30 +00:00
|
|
|
{% include 'snippets/block_button.html' with user=user blocks=True %}
|
2021-01-26 17:56:01 +00:00
|
|
|
</p>
|
|
|
|
</li>
|
2021-01-26 21:02:04 +00:00
|
|
|
{% endfor %}
|
2021-01-26 17:56:01 +00:00
|
|
|
</ul>
|
2021-01-26 21:02:04 +00:00
|
|
|
{% endif %}
|
2021-01-26 17:56:01 +00:00
|
|
|
{% endblock %}
|