From 5fc40eac6150f178fad39f8f66cc946a12bbd992 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..5a0dd74 --- /dev/null +++ b/fargo/templates/mellon/base.html @@ -0,0 +1,12 @@ +{% extends "fargo/base.html" %} + +{% block extrascripts %} + {{ block.super }} + {% block mellon_extra_scripts %} + {% endblock %} +{% endblock %} + +{% block content %} + {% block mellon_content %} + {% endblock %} +{% endblock %} -- 2.18.0