From 8b16304e841f83d4d776d8536678244f44795325 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 8 Oct 2020 14:09:08 +1100 Subject: [PATCH] Custom 404 page --- InvenTree/templates/404.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 InvenTree/templates/404.html diff --git a/InvenTree/templates/404.html b/InvenTree/templates/404.html new file mode 100644 index 0000000000..3cb6464d99 --- /dev/null +++ b/InvenTree/templates/404.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block page_title %} +InvenTree | {% trans "Page Not Found" %} +{% endblock %} + +{% block content %} + +
+

{% trans "Page Not Found" %}

+ +
+ {% trans "The requested page does not exist" %} +
+
+ +{% endblock %} \ No newline at end of file