Add signal pretix.control.signals.order_info

This commit is contained in:
Raphael Michel
2017-09-26 11:47:46 +02:00
parent 1a8e67f4de
commit d38f29ac7c
3 changed files with 12 additions and 1 deletions

View File

@@ -182,6 +182,15 @@ This is a regular django signal (no pretix event signal). Receivers will be pass
the keyword arguments ``organizer`` and ``request``.
"""
order_info = EventPluginSignal(
providing_args=["order"]
)
"""
This signal is sent out to display additional information on the order detail page
As with all plugin signals, the ``sender`` keyword argument will contain the event.
"""
nav_event_settings = EventPluginSignal(
providing_args=['request']