From 4cf25b0ac864ea65b48e5dd90e225ba633f0dfa9 Mon Sep 17 00:00:00 2001 From: Austin Riba Date: Wed, 18 Feb 2026 15:03:12 -0800 Subject: [PATCH 1/2] Add a custom 404 page --- tom_common/templates/404.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tom_common/templates/404.html diff --git a/tom_common/templates/404.html b/tom_common/templates/404.html new file mode 100644 index 000000000..001c8eff5 --- /dev/null +++ b/tom_common/templates/404.html @@ -0,0 +1,11 @@ +{% extends 'tom_common/base.html' %} +{% block content %} +
+

That doesn't exist.

+
+{% endblock %} From 2486822b0ca509456c8138dc30043d620967e552 Mon Sep 17 00:00:00 2001 From: Joey Chatelain Date: Tue, 24 Feb 2026 12:15:43 -0700 Subject: [PATCH 2/2] make message less aggressive --- tom_common/templates/404.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tom_common/templates/404.html b/tom_common/templates/404.html index 001c8eff5..670c1b159 100644 --- a/tom_common/templates/404.html +++ b/tom_common/templates/404.html @@ -6,6 +6,8 @@ #848484 45%, #000 75% ); display: flex; align-items: flex-start; justify-content: center; padding-top: 4rem;"> -

That doesn't exist.

+

+ Sorry, we couldn't find what you're looking 404. +

{% endblock %}