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
+7 -7
View File
@@ -1,12 +1,12 @@
{% extends 'base.html' %}
{% block content %}
<div class="">
<h2>404 error</h2>
{{ reason }}
<div class="">
<h2>404 error</h2>
{{ reason }}
{% if resolved %}
<h3>{{ resolved }}</h3>
{% endif %}
</div>
{% if resolved %}
<h3>{{ resolved }}</h3>
{% endif %}
</div>
{% endblock %}