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 %}
|
|