zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "app/base.html" %}
{% load settings i18n %}
 
{% block page-wrapper %}
<div style="text-align: center;">
    <h3>{% trans '404 Page Not Found' %}</h3>
    <h5>{% trans 'Are you sure the address is correct?' %}</h5>
    <img src="/static/app/img/404.png" alt="404"/>
</div>
 
{{ SETTINGS.theme.html_after_header|safe }}
{% endblock %}