mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Add a request argument to the html_head signals
This commit is contained in:
@@ -16,7 +16,7 @@ def contextprocessor(request):
|
||||
}
|
||||
_html_head = []
|
||||
if hasattr(request, 'event'):
|
||||
for receiver, response in html_head.send(request.event):
|
||||
for receiver, response in html_head.send(request.event, request=request):
|
||||
_html_head.append(response)
|
||||
ctx['html_head'] = "".join(_html_head)
|
||||
|
||||
|
||||
@@ -13,5 +13,5 @@ restriction_formset = EventPluginSignal(
|
||||
This signal is sent out to include code into the HTML <head> tag
|
||||
"""
|
||||
html_head = EventPluginSignal(
|
||||
providing_args=[]
|
||||
providing_args=["request"]
|
||||
)
|
||||
|
||||
@@ -14,7 +14,7 @@ def contextprocessor(request):
|
||||
}
|
||||
_html_head = []
|
||||
if hasattr(request, 'event'):
|
||||
for receiver, response in html_head.send(request.event):
|
||||
for receiver, response in html_head.send(request.event, request=request):
|
||||
_html_head.append(response)
|
||||
ctx['html_head'] = "".join(_html_head)
|
||||
|
||||
|
||||
@@ -5,5 +5,5 @@ from pretix.base.signals import EventPluginSignal
|
||||
This signal is sent out to include code into the HTML <head> tag
|
||||
"""
|
||||
html_head = EventPluginSignal(
|
||||
providing_args=[]
|
||||
providing_args=["request"]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user