Add plugin API for adding items to the admin navigation

This commit is contained in:
Raphael Michel
2015-03-21 18:15:43 +01:00
parent a0b1a2e11b
commit 591ded3ff2
4 changed files with 39 additions and 3 deletions

View File

@@ -15,3 +15,10 @@ 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"]
)