Fix indentation in 404 error template for improved readability

This commit is contained in:
Ross
2026-02-02 16:33:59 +00:00
parent 2e79df1eae
commit 8074b56a80
+6 -6
View File
@@ -1,12 +1,12 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% block content %} {% block content %}
<div class=""> <div class="">
<h2>404 error</h2> <h2>404 error</h2>
{{ reason }} {{ reason }}
{% if resolved %} {% if resolved %}
<h3>{{ resolved }}</h3> <h3>{{ resolved }}</h3>
{% endif %} {% endif %}
</div> </div>
{% endblock %} {% endblock %}