2021-09-08 21:32:11 +00:00
|
|
|
{% extends 'settings/layout.html' %}
|
2021-04-19 22:19:55 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2021-04-19 23:08:01 +00:00
|
|
|
{% block title %}{{ user.username }}{% endblock %}
|
2021-09-06 16:35:25 +00:00
|
|
|
{% block header %}
|
|
|
|
{{ user.username }}
|
|
|
|
<p class="help has-text-weight-normal">
|
2021-04-19 22:40:51 +00:00
|
|
|
<a href="{% url 'settings-users' %}">{% trans "Back to users" %}</a>
|
2021-09-06 16:35:25 +00:00
|
|
|
</p>
|
2021-04-19 22:19:55 +00:00
|
|
|
|
2021-09-06 16:35:25 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block panel %}
|
2021-04-19 22:19:55 +00:00
|
|
|
{% include 'user_admin/user_info.html' with user=user %}
|
|
|
|
|
|
|
|
{% include 'user_admin/user_moderation_actions.html' with user=user %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|