templates: update 404/500 to use the shared theme (#9382)

This commit is contained in:
Frédéric Péters 2015-12-18 14:56:23 +01:00
parent 4877fcbe0e
commit 5e24b04974
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{% extends "theme.html" %}
{% extends theme_base %}
{% load i18n %}
{% block title %} {% trans "Error: page not found" %} {% endblock %}

View File

@ -1,4 +1,4 @@
{% extends "theme.html" %}
{% extends theme_base %}
{% load i18n %}
{% block title %} {% trans "Error: server error (500)" %} {% endblock %}