summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chimere/templates/404.html5
-rw-r--r--chimere/templates/500.html5
2 files changed, 10 insertions, 0 deletions
diff --git a/chimere/templates/404.html b/chimere/templates/404.html
new file mode 100644
index 0000000..d7d0de0
--- /dev/null
+++ b/chimere/templates/404.html
@@ -0,0 +1,5 @@
+{% load i18n %}
+{% extends "base.html" %}
+{% block content %}
+<h2>{% trans "Page not found" %}</h2>
+{% endblock %}
diff --git a/chimere/templates/500.html b/chimere/templates/500.html
new file mode 100644
index 0000000..a230d92
--- /dev/null
+++ b/chimere/templates/500.html
@@ -0,0 +1,5 @@
+{% load i18n %}
+{% extends "base.html" %}
+{% block content %}
+<h2>{% trans "Internal server error"%}</h2>
+{% endblock %}