Add conditional rendering for reason in 404 error template

This commit is contained in:
Ross
2026-02-02 16:41:11 +00:00
parent a882a3592b
commit a0850c0030
+3 -1
View File
@@ -3,7 +3,9 @@
{% block content %}
<div class="">
<h2>404 error</h2>
{{ reason }}
{% if reason %}
{{ reason }}
{% endif %}
{% if resolved %}
<h3>{{ resolved }}</h3>