From db39fbb446db3d852f61caf64c9d674e9daa7118 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 22 Mar 2024 11:23:19 +1100 Subject: [PATCH] Remove unused `static/error` templates --- conservancy/static/error/401/index.html | 10 ---------- conservancy/static/error/403/index.html | 10 ---------- conservancy/static/error/404/index.html | 9 --------- conservancy/static/error/500/index.html | 1 - 4 files changed, 30 deletions(-) delete mode 100644 conservancy/static/error/401/index.html delete mode 100644 conservancy/static/error/403/index.html delete mode 100644 conservancy/static/error/404/index.html delete mode 100644 conservancy/static/error/500/index.html diff --git a/conservancy/static/error/401/index.html b/conservancy/static/error/401/index.html deleted file mode 100644 index 518eaff1..00000000 --- a/conservancy/static/error/401/index.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "base_error.html" %} -{% block content %} - -

401 Error

- -

The page you requested at sfconservancy.org -requires authorization. Please use the navigation items to find a -page that you are authorized to see.

- -{% endblock %} diff --git a/conservancy/static/error/403/index.html b/conservancy/static/error/403/index.html deleted file mode 100644 index 42a783a9..00000000 --- a/conservancy/static/error/403/index.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "base_error.html" %} -{% block content %} - -

403 Error

- -

The page you requested at sfconservancy.org -does not have read permission. Please use the navigation items to -find a page that you are authorized to see.

- -{% endblock %} diff --git a/conservancy/static/error/404/index.html b/conservancy/static/error/404/index.html deleted file mode 100644 index a9e3b15b..00000000 --- a/conservancy/static/error/404/index.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "base_error.html" %} -{% block content %} - -

404 Error

- -

The page you requested at sfconservancy.org -was not found. Please use the navigation items to find a page that is -available.

-{% endblock %} diff --git a/conservancy/static/error/500/index.html b/conservancy/static/error/500/index.html deleted file mode 100644 index 92644de1..00000000 --- a/conservancy/static/error/500/index.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "500.html" %}