Fix #357 -- Implement go to for vouchers (#849)

* Add Go input for vouchers on the vouchers list page (#357)

* Final fixes
This commit is contained in:
Mason Mohkami
2018-05-31 03:43:32 -07:00
committed by Raphael Michel
parent 6fe02f156a
commit 479a7d9162
3 changed files with 36 additions and 8 deletions

View File

@@ -151,6 +151,7 @@ urlpatterns = [
url(r'^vouchers/(?P<voucher>\d+)/delete$', vouchers.VoucherDelete.as_view(),
name='event.voucher.delete'),
url(r'^vouchers/add$', vouchers.VoucherCreate.as_view(), name='event.vouchers.add'),
url(r'^vouchers/go$', vouchers.VoucherGo.as_view(), name='event.vouchers.go'),
url(r'^vouchers/bulk_add$', vouchers.VoucherBulkCreate.as_view(), name='event.vouchers.bulk'),
url(r'^orders/(?P<code>[0-9A-Z]+)/transition$', orders.OrderTransition.as_view(),
name='event.order.transition'),