Moves user admin templates into settings directory

This commit is contained in:
Mouse Reeve
2021-09-28 12:46:38 -07:00
parent a1a1fd90a1
commit 9b091eaf75
9 changed files with 9 additions and 9 deletions

View File

@ -0,0 +1,19 @@
{% extends 'settings/layout.html' %}
{% load i18n %}
{% block title %}{{ user.username }}{% endblock %}
{% block header %}
{{ user.username }}
<p class="help has-text-weight-normal">
<a href="{% url 'settings-users' %}">{% trans "Back to users" %}</a>
</p>
{% endblock %}
{% block panel %}
{% include 'settings/users/user_info.html' with user=user %}
{% include 'settings/users/user_moderation_actions.html' with user=user %}
{% endblock %}