10 lines
306 B
HTML
10 lines
306 B
HTML
{% extends 'error_handler_base.html' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div class="text-center mt-5">
|
|
<h1>404</h1>
|
|
<p>{% trans 'Looks like the page you're looking for is does not exist.' %}</p>
|
|
<a href="/" class="link">← {% trans 'Return to the app' %}</a>
|
|
</div>
|
|
{% endblock %}
|