forked from mirrors/bookwyrm
17 lines
429 B
HTML
17 lines
429 B
HTML
{% extends 'settings/admin_layout.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ user.username }}{% endblock %}
|
|
{% block header %}{{ user.username }}{% endblock %}
|
|
|
|
{% block panel %}
|
|
<div class="block">
|
|
<a href="{% url 'settings-users' %}">{% trans "Back to users" %}</a>
|
|
</div>
|
|
|
|
{% include 'user_admin/user_info.html' with user=user %}
|
|
|
|
{% include 'user_admin/user_moderation_actions.html' with user=user %}
|
|
|
|
{% endblock %}
|
|
|