Added two new exporters

This commit is contained in:
Raphael Michel
2016-05-31 10:07:00 +02:00
parent d8b7765a9b
commit d8705913b1
5 changed files with 173 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from django.dispatch import receiver
from pretix.base.signals import register_data_exporters
@receiver(register_data_exporters, dispatch_uid="export_checkinlist_csv")
def register_csv(sender, **kwargs):
from .exporters import CSVCheckinList
return CSVCheckinList