diff --git a/backend/workflows/templates/workflows/errors/error_page.html b/backend/workflows/templates/workflows/errors/error_page.html
index c3340c2..b745642 100644
--- a/backend/workflows/templates/workflows/errors/error_page.html
+++ b/backend/workflows/templates/workflows/errors/error_page.html
@@ -3,29 +3,349 @@
{% block title %}{{ error_title }}{% endblock %}
+{% block extra_head %}
+
+{% endblock %}
+
{% block shell_body %}
{% include 'workflows/includes/app_header.html' with header_show_home=1 header_inside_shell=1 %}
-
-
-
-
-
{% trans "Fehlerseite" %}
-
{{ error_heading }}
-
{{ error_message }}
-
-
-
{{ error_code }}
-
{% trans "Status" %}
+
+
+
+
{% trans "System Response" %}
+
{{ error_heading }}
+
{{ error_message }}
+
-
-
{% trans "Zur Startseite" %}
- {% if request.user.is_authenticated %}
-
{% trans "Zum Dashboard" %}
- {% else %}
-
{% trans "Anmelden" %}
- {% endif %}
+
+
+ {% trans "Status" %}
+ {{ error_code }}
+
+
+
+
+
+
{% trans "What Happened" %}
+
{{ error_title }}
+
+ {{ error_message }}
+
+
+ {% trans "HTTP" %}
+ {{ error_code }}
+
+
+ {% trans "Path" %}
+ {{ request.path|default:"/" }}
+
+
+
+
+
+
+
{% trans "Next Step" %}
+
{% trans "How to continue" %}
+
+
+ - {% trans "Gehen Sie zur Startseite zurück und öffnen Sie den gewünschten Bereich erneut." %}
+ - {% trans "Prüfen Sie die URL, falls Sie eine Adresse manuell eingegeben haben." %}
+ - {% trans "Wenn das Problem bestehen bleibt, prüfen Sie die Server-Logs oder wenden Sie sich an die Administration." %}
+
+
+
{% endblock %}