misc: set template_base when including mellon's urls (#59529)

This commit is contained in:
Benjamin Dauvergne 2021-12-09 11:51:04 +01:00
parent baa600bc14
commit 504c90cc7c
1 changed files with 3 additions and 1 deletions

View File

@ -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'})
]