diff --git a/src/data/templates/404.html b/src/data/templates/404.html new file mode 100644 index 000000000..9bf4293e7 --- /dev/null +++ b/src/data/templates/404.html @@ -0,0 +1,12 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block title %}{% trans 'Page not found' %}{% endblock %} + +{% block content %} + +
{% trans "We're sorry, but the requested page could not be found." %}
+ +{% endblock %} diff --git a/src/data/templates/500.html b/src/data/templates/500.html new file mode 100644 index 000000000..b30e43170 --- /dev/null +++ b/src/data/templates/500.html @@ -0,0 +1,12 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block breadcrumbs %} {% endblock %} + +{% block title %}{% trans 'Server error (500)' %}{% endblock %} + +{% block content %} +{% trans "There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience." %}
+ +{% endblock %}