From 89bbe451d5a3aa86768c9a9072988cc2d35486a8 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Fri, 21 May 2021 19:16:22 +0100 Subject: [PATCH] Add custom 503 error page --- borgweb/templates/503.html | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 borgweb/templates/503.html diff --git a/borgweb/templates/503.html b/borgweb/templates/503.html new file mode 100644 index 0000000..747a237 --- /dev/null +++ b/borgweb/templates/503.html @@ -0,0 +1,4 @@ +{% extends "error/error.html" %} + +{% block title %}503: Service Unavailable{% endblock %} +{% block error_message %}503: Service Unavailable{% endblock %}