From 81aa6221fedaf62d4fd16cd1655231568a60cc27 Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Thu, 15 Jan 2015 14:31:18 +0100 Subject: [PATCH] templates inherit from mellon's base.html --- mellon/templates/mellon/authentication_failed.html | 2 +- mellon/templates/mellon/base.html | 1 + mellon/templates/mellon/inactive_user.html | 2 +- mellon/templates/mellon/user_not_found.html | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 mellon/templates/mellon/base.html diff --git a/mellon/templates/mellon/authentication_failed.html b/mellon/templates/mellon/authentication_failed.html index bd9353e..ba8e6eb 100644 --- a/mellon/templates/mellon/authentication_failed.html +++ b/mellon/templates/mellon/authentication_failed.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} {% block extra_scripts %} diff --git a/mellon/templates/mellon/base.html b/mellon/templates/mellon/base.html new file mode 100644 index 0000000..94d9808 --- /dev/null +++ b/mellon/templates/mellon/base.html @@ -0,0 +1 @@ +{% extends "base.html" %} diff --git a/mellon/templates/mellon/inactive_user.html b/mellon/templates/mellon/inactive_user.html index 7edc81b..7ebf40a 100644 --- a/mellon/templates/mellon/inactive_user.html +++ b/mellon/templates/mellon/inactive_user.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} {% block content %} diff --git a/mellon/templates/mellon/user_not_found.html b/mellon/templates/mellon/user_not_found.html index 6a34c54..3555456 100644 --- a/mellon/templates/mellon/user_not_found.html +++ b/mellon/templates/mellon/user_not_found.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "mellon/base.html" %} {% load i18n %} {% block content %} -- 2.1.4