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>
24 lines
623 B
HTML
24 lines
623 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "500" %}</h2>
|
|
|
|
<p>
|
|
{% url 'help:status-log' as status_log_url %}
|
|
{% blocktrans trimmed %}
|
|
This is an internal error and not something you caused or can fix. Please
|
|
report the error on the <a
|
|
href="https://salsa.debian.org/freedombox-team/freedombox/issues">bug
|
|
tracker</a> so we can fix it. Also, please attach the <a
|
|
href="{{ status_log_url }}">status log</a> to the bug report.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endblock %}
|