moviewyrm/bookwyrm/templates/user_admin/user.html

18 lines
429 B
HTML
Raw Normal View History

{% extends 'settings/admin_layout.html' %}
{% load i18n %}
2021-04-19 23:08:01 +00:00
{% block title %}{{ user.username }}{% endblock %}
{% block header %}{{ user.username }}{% endblock %}
{% block panel %}
<div class="block">
2021-04-19 22:40:51 +00:00
<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 %}