From 70388c7b1bd6e6b1aa7da95105eeb6920726c67f Mon Sep 17 00:00:00 2001 From: Luca Date: Tue, 17 Oct 2023 01:14:43 +0200 Subject: [PATCH] Add error templates --- ljg/core/templates/400.html | 5 +++++ ljg/core/templates/403.html | 5 +++++ ljg/core/templates/404.html | 5 +++++ ljg/core/templates/500.html | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 ljg/core/templates/400.html create mode 100644 ljg/core/templates/403.html create mode 100644 ljg/core/templates/404.html create mode 100644 ljg/core/templates/500.html diff --git a/ljg/core/templates/400.html b/ljg/core/templates/400.html new file mode 100644 index 0000000..d5640fc --- /dev/null +++ b/ljg/core/templates/400.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block title %}Error – {{ APP_TITLE }}{% endblock %} diff --git a/ljg/core/templates/403.html b/ljg/core/templates/403.html new file mode 100644 index 0000000..d5640fc --- /dev/null +++ b/ljg/core/templates/403.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block title %}Error – {{ APP_TITLE }}{% endblock %} diff --git a/ljg/core/templates/404.html b/ljg/core/templates/404.html new file mode 100644 index 0000000..a8cf44a --- /dev/null +++ b/ljg/core/templates/404.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block title %}Not Found – {{ APP_TITLE }}{% endblock %} diff --git a/ljg/core/templates/500.html b/ljg/core/templates/500.html new file mode 100644 index 0000000..d5640fc --- /dev/null +++ b/ljg/core/templates/500.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block title %}Error – {{ APP_TITLE }}{% endblock %}