mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- During database error such as 'database is locked', show a special message asking users to try again instead of submitting a bug report. [sunil: Minor formatting, rename the template file name] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> [jvalleroy: Fix missing import] Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
17 lines
220 B
HTML
17 lines
220 B
HTML
{% extends 'base.html' %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{% trans "Error" %}</h2>
|
|
|
|
<p>
|
|
{{ message }}
|
|
</p>
|
|
|
|
{% endblock %}
|