From 80b50f7b7d0eb35bac818102dde35174e1022d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 30 Jul 2018 07:37:48 +0200 Subject: [PATCH] add base template for django-mellon error pages (#25526) --- fargo/templates/mellon/base.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fargo/templates/mellon/base.html diff --git a/fargo/templates/mellon/base.html b/fargo/templates/mellon/base.html new file mode 100644 index 0000000..b585332 --- /dev/null +++ b/fargo/templates/mellon/base.html @@ -0,0 +1,12 @@ +{% extends "fargo/base.html" %} + +{% block extra_scripts %} + {{ block.super }} + {% block mellon_extra_scripts %} + {% endblock %} +{% endblock %} + +{% block content %} + {% block mellon_content %} + {% endblock %} +{% endblock %} -- 2.18.0