Add signal seatingframe_html_head (#4270)

This commit is contained in:
Richard Schreiber
2024-06-27 10:46:26 +02:00
committed by GitHub
parent ae8ff60964
commit 25ba2f1145
3 changed files with 18 additions and 2 deletions

View File

@@ -80,6 +80,17 @@ of every page in the frontend. You will get the request as the keyword argument
As with all plugin signals, the ``sender`` keyword argument will contain the event.
"""
seatingframe_html_head = EventPluginSignal()
"""
Arguments: ``request``
This signal allows you to put code inside the HTML ``<head>`` tag
of the seatingframe page in the frontend. You will get the request as the keyword argument
``request`` and are expected to return plain HTML.
As with all plugin signals, the ``sender`` keyword argument will contain the event.
"""
html_page_header = EventPluginSignal()
"""
Arguments: ``request``