Add ticket downloads to the backend

This commit is contained in:
Raphael Michel
2018-12-19 12:31:24 +01:00
parent 3fe2dfe810
commit 215514fca7
3 changed files with 139 additions and 3 deletions

View File

@@ -199,6 +199,9 @@ urlpatterns = [
name='event.order.regeninvoice'),
url(r'^orders/(?P<code>[0-9A-Z]+)/invoices/(?P<id>\d+)/reissue$', orders.OrderInvoiceReissue.as_view(),
name='event.order.reissueinvoice'),
url(r'^orders/(?P<code>[0-9A-Z]+)/download/(?P<position>\d+)/(?P<output>[^/]+)/$',
orders.OrderDownload.as_view(),
name='event.order.download.ticket'),
url(r'^orders/(?P<code>[0-9A-Z]+)/answer/(?P<answer>[^/]+)/$',
orders.AnswerDownload.as_view(),
name='event.order.download.answer'),