{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n %} {% block content %}

{% trans "Page not found" %}

{% blocktrans trimmed %} The requested path {{ request_path }} was not found on the server. {% endblocktrans %}

{% if exception != "Resolver404" %}

{% trans "Exception message:" %} {{ exception }}

{% endif %}
{% endblock %}