forked from CGM_Public/pretix_original
25 lines
539 B
Python
25 lines
539 B
Python
from pretix.base.signals import EventPluginSignal
|
|
|
|
|
|
"""
|
|
This signal is sent out to build configuration forms for all restriction formsets
|
|
(see plugin API documentation for details).
|
|
"""
|
|
restriction_formset = EventPluginSignal(
|
|
providing_args=["item"]
|
|
)
|
|
|
|
"""
|
|
This signal is sent out to include code into the HTML <head> tag
|
|
"""
|
|
html_head = EventPluginSignal(
|
|
providing_args=["request"]
|
|
)
|
|
|
|
"""
|
|
This signal is sent out to include navigation items in the event admin
|
|
"""
|
|
nav_event = EventPluginSignal(
|
|
providing_args=["request"]
|
|
)
|