From 5e24b04974b38479147bf913f52d25a94b31ed53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 18 Dec 2015 14:56:23 +0100 Subject: [PATCH] templates: update 404/500 to use the shared theme (#9382) --- templates/404.html | 2 +- templates/500.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/404.html b/templates/404.html index 80acd2c..3534470 100644 --- a/templates/404.html +++ b/templates/404.html @@ -1,4 +1,4 @@ -{% extends "theme.html" %} +{% extends theme_base %} {% load i18n %} {% block title %} {% trans "Error: page not found" %} {% endblock %} diff --git a/templates/500.html b/templates/500.html index 7125aae..224bd86 100644 --- a/templates/500.html +++ b/templates/500.html @@ -1,4 +1,4 @@ -{% extends "theme.html" %} +{% extends theme_base %} {% load i18n %} {% block title %} {% trans "Error: server error (500)" %} {% endblock %}