2021-09-08 17:32:11 -04:00
|
|
|
{% extends 'settings/layout.html' %}
|
2021-04-19 18:19:55 -04:00
|
|
|
{% load i18n %}
|
|
|
|
|
2021-04-19 19:08:01 -04:00
|
|
|
{% block title %}{{ user.username }}{% endblock %}
|
2021-09-06 12:35:25 -04:00
|
|
|
{% block header %}
|
|
|
|
{{ user.username }}
|
2021-09-28 18:20:10 -04:00
|
|
|
<a class="help has-text-weight-normal" href="{% url 'settings-users' %}">{% trans "Back to users" %}</a>
|
2021-09-06 12:35:25 -04:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block panel %}
|
2021-09-28 15:46:38 -04:00
|
|
|
{% include 'settings/users/user_info.html' with user=user %}
|
2021-04-19 18:19:55 -04:00
|
|
|
|
2021-09-28 15:46:38 -04:00
|
|
|
{% include 'settings/users/user_moderation_actions.html' with user=user %}
|
2021-04-19 18:19:55 -04:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|