Provide a new API for plugins to add HTML to the <head> of the site

This commit is contained in:
Raphael Michel
2015-03-15 23:50:30 +01:00
parent c23468e266
commit f54515ba0a
9 changed files with 69 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
from pretix.base.signals import EventPluginSignal
"""
This signal is sent out to include code into the HTML <head> tag
"""
html_head = EventPluginSignal(
providing_args=[]
)