2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 20:46:47 +00:00

turn around template loader order

This commit is contained in:
Matthias 2021-12-04 19:49:43 +01:00
parent bb2ad7c2cb
commit ed5bb3d264
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -359,9 +359,9 @@ TEMPLATES = [
], ],
'loaders': [( 'loaders': [(
'django.template.loaders.cached.Loader', [ 'django.template.loaders.cached.Loader', [
'django.template.loaders.app_directories.Loader',
'django.template.loaders.filesystem.Loader',
'plugin.loader.PluginTemplateLoader', 'plugin.loader.PluginTemplateLoader',
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
]) ])
], ],
}, },