mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- The repository has been renamed from 'plinth' to 'freedombox'. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
28 lines
595 B
HTML
28 lines
595 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "404" %}</h2>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Requested page {{ request_path }} was not found.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
If you believe this missing page should exist, please file a bug at the
|
|
FreedomBox Service (Plinth) project <a
|
|
href="https://salsa.debian.org/freedombox-team/freedombox/issues">issue
|
|
tracker</a>.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endblock %}
|