Added filters to the list of orders

This commit is contained in:
Raphael Michel
2015-06-23 19:17:09 +02:00
parent 0108a955c3
commit b7cbf55db4
5 changed files with 102 additions and 25 deletions

View File

@@ -63,6 +63,7 @@ urlpatterns = [
name='event.order.extend'),
url(r'^orders/(?P<code>[0-9A-Z]+)/$', orders.OrderDetail.as_view(), name='event.order'),
url(r'^orders/overview/$', orders.OverView.as_view(), name='event.orders.overview'),
url(r'^orders/go$', orders.OrderGo.as_view(), name='event.orders.go'),
url(r'^orders/$', orders.OrderList.as_view(), name='event.orders'),
])),
]