From 2680b25f2c2427c1d80f0d9b80465bf0c39e6864 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Mon, 24 Apr 2023 15:55:22 +1000 Subject: [PATCH] Add a copy of 500.html that matches our template blocks The builtin `pinax_theme_bootstrap` uses `body` instead of `content`. --- pinaxcon/templates/500.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pinaxcon/templates/500.html diff --git a/pinaxcon/templates/500.html b/pinaxcon/templates/500.html new file mode 100644 index 00000000..fe6e2690 --- /dev/null +++ b/pinaxcon/templates/500.html @@ -0,0 +1,12 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Server Error" %}{% endblock %} + +{% block content %} +
+

{% trans "Something went wrong" %}

+

{% trans "We're sorry but a server error has occurred. We've been notified and will look into it as soon as possible." %}

+
+{% endblock %}