From 9b567870577552f00d9c9b57952da277a0236eaf Mon Sep 17 00:00:00 2001 From: George Lacey Date: Wed, 12 May 2021 11:35:56 +0100 Subject: [PATCH] Move errors to own directory --- borgweb/templates/404.html | 2 +- borgweb/templates/{ => error}/error.html | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename borgweb/templates/{ => error}/error.html (100%) diff --git a/borgweb/templates/404.html b/borgweb/templates/404.html index 05b8713..261bdc9 100644 --- a/borgweb/templates/404.html +++ b/borgweb/templates/404.html @@ -1,4 +1,4 @@ -{% extends "error.html" %} +{% extends "error/error.html" %} {% block title %}404: Page Not Found{% endblock %} {% block error_message %}404: Page Not Found{% endblock %} diff --git a/borgweb/templates/error.html b/borgweb/templates/error/error.html similarity index 100% rename from borgweb/templates/error.html rename to borgweb/templates/error/error.html