From 6038305f955aa775d17ca68e4ee5d56375bfedf1 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 | 6 ++++++ 1 file changed, 6 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..6346026 --- /dev/null +++ b/fargo/templates/mellon/base.html @@ -0,0 +1,6 @@ +{% extends "fargo/base.html" %} + +{% block content %} + {% block mellon_content %} + {% endblock %} +{% endblock %} -- 2.18.0