diff --git a/bookwyrm/templates/user_admin/user_moderation_actions.html b/bookwyrm/templates/user_admin/user_moderation_actions.html
index 3a82d92c..12b70d3c 100644
--- a/bookwyrm/templates/user_admin/user_moderation_actions.html
+++ b/bookwyrm/templates/user_admin/user_moderation_actions.html
@@ -1,6 +1,6 @@
{% load i18n %}
- {% if not user.is_active and user.deactivation_reason == "self_deletion" %}
+ {% if not user.is_active and user.deactivation_reason == "self_deletion" or user.deactivation_reason == "moderator_deletion" %}
{% trans "Permanently deleted" %}
@@ -15,23 +15,31 @@
{% endif %}
{% if user.is_active or user.deactivation_reason == "pending" %}
-
-
-
{% else %}
-
-
-
{% endif %}
+ {% if user.local %}
+
+ {% trans "Permanently delete user" as button_text %}
+ {% include "snippets/toggle/open_button.html" with controls_text="delete_user" text=button_text class="is-danger is-light" %}
+
+ {% endif %}
+ {% if user.local %}
+
+ {% include "user_admin/delete_user_form.html" with controls_text="delete_user" class="mt-2 mb-2" %}
+
+ {% endif %}
+
{% if user.local %}