Added voucher tag statistics

This commit is contained in:
Raphael Michel
2016-07-30 15:41:59 +02:00
parent 650f2412c2
commit 168288e98a
5 changed files with 84 additions and 3 deletions

View File

@@ -59,6 +59,7 @@ urlpatterns = [
name='event.items.quotas.delete'),
url(r'^quotas/add$', item.QuotaCreate.as_view(), name='event.items.quotas.add'),
url(r'^vouchers/$', vouchers.VoucherList.as_view(), name='event.vouchers'),
url(r'^vouchers/tags/$', vouchers.VoucherTags.as_view(), name='event.vouchers.tags'),
url(r'^vouchers/(?P<voucher>\d+)/$', vouchers.VoucherUpdate.as_view(), name='event.voucher'),
url(r'^vouchers/(?P<voucher>\d+)/delete$', vouchers.VoucherDelete.as_view(),
name='event.voucher.delete'),