From 136438f9c2b168323f4c51bb647e6002c51ebf97 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sat, 13 Jul 2024 00:31:26 +0200 Subject: [PATCH] [CHANGE] Center HTTPError messages --- .../templates/allianceauth/error.html | 46 +++++++++++-------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/allianceauth/templates/allianceauth/error.html b/allianceauth/templates/allianceauth/error.html index 5d65c676..3c2280ea 100644 --- a/allianceauth/templates/allianceauth/error.html +++ b/allianceauth/templates/allianceauth/error.html @@ -1,31 +1,37 @@ {% extends "allianceauth/base-bs5.html" %} +{% load theme_tags %} + {% block page_title %} {{ error_title }} {% endblock page_title %} {% block content %} -
- {% include "framework/header/page-header.html" with title=error_title %} +
+
+
+ {% include "framework/header/page-header.html" with title=error_title %} -
- - - - +
+ + + + +
+ +

{{ error_message }}

+
- -

{{ error_message }}

{% endblock content %}