From 05fe3f36505838bea097e856dfc0a5e7d05bfae5 Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Thu, 15 Jan 2015 14:46:45 +0100 Subject: [PATCH] base.html template inheriting from hobo's base for mellon application Closes #6004 --- hobo/templates/mellon/base.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hobo/templates/mellon/base.html diff --git a/hobo/templates/mellon/base.html b/hobo/templates/mellon/base.html new file mode 100644 index 0000000..9beeeeb --- /dev/null +++ b/hobo/templates/mellon/base.html @@ -0,0 +1,12 @@ +{% extends "hobo/base.html" %} + +{% block content %} +{% block mellon_content %} +{% endblock %} +{% endblock %} + +{% block extrascripts %} +{% block mellon_extrascripts %} +{% endblock %} +{% endblock %} + -- 2.1.4