diff --git a/openslides/participant/templates/participant/overview.html b/openslides/participant/templates/participant/overview.html
index f61afe04f..310cbf04c 100644
--- a/openslides/participant/templates/participant/overview.html
+++ b/openslides/participant/templates/participant/overview.html
@@ -93,10 +93,12 @@
- {% if user != request_user and not user.is_superuser %}
+ {% if user != request_user %}
+ {% endif %}
+ {% if user != request_user and not user.is_superuser %}
diff --git a/openslides/participant/views.py b/openslides/participant/views.py
index a055beefb..5b1097295 100644
--- a/openslides/participant/views.py
+++ b/openslides/participant/views.py
@@ -208,8 +208,6 @@ class UserDeleteView(DeleteView):
def pre_redirect(self, request, *args, **kwargs):
if self.get_object() == self.request.user:
messages.error(request, _("You can not delete yourself."))
- elif self.get_object().is_superuser:
- messages.error(request, _("You can not delete the administrator."))
else:
super(DeleteView, self).pre_redirect(request, *args, **kwargs)