1
0
mirror of https://github.com/django/django.git synced 2025-04-06 06:26:41 +00:00

Refs #27728 -- Fixed thread safety of admin template tags.

Regression in 5cc28dc752c3ae78456bb835c3ba195489fc26d7.
This commit is contained in:
Carlton Gibson 2018-02-28 16:12:50 +01:00 committed by Tim Graham
parent 4c02e3cda3
commit 94a180402c

View File

@ -23,10 +23,11 @@ class InclusionAdminNode(InclusionNode):
opts = context['opts']
app_label = opts.app_label.lower()
object_name = opts.object_name.lower()
self.filename = [
# Load template for this render call. (Setting self.filename isn't
# thread-safe.)
context.render_context[self] = context.template.engine.select_template([
'admin/%s/%s/%s' % (app_label, object_name, self.template_name),
'admin/%s/%s' % (app_label, self.template_name),
'admin/%s' % (self.template_name,),
]
])
return super().render(context)