From 504c90cc7c8a9071145b7a69b1d97f85443f0f94 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 9 Dec 2021 11:51:04 +0100 Subject: [PATCH] misc: set template_base when including mellon's urls (#59529) --- bijoe/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bijoe/urls.py b/bijoe/urls.py index 45fd264..8414836 100644 --- a/bijoe/urls.py +++ b/bijoe/urls.py @@ -30,4 +30,6 @@ urlpatterns = [ ] if 'mellon' in settings.INSTALLED_APPS: - urlpatterns += [url(r'^accounts/mellon/', include('mellon.urls'))] + urlpatterns += [ + url(r'^accounts/mellon/', include('mellon.urls'), kwargs={'template_base': 'bijoe/base.html'}) + ]