add base template for django-mellon error pages (#25526)

This commit is contained in:
Frédéric Péters 2018-07-30 07:37:48 +02:00
parent fe0290b54e
commit 5cf5c7d877
1 changed files with 12 additions and 0 deletions

View File

@ -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 %}