Order changing permissions, list of ordered items

This commit is contained in:
Raphael Michel
2015-03-20 17:29:47 +01:00
parent dbc3dff905
commit 244ad04520
8 changed files with 220 additions and 5 deletions

View File

@@ -46,6 +46,7 @@ urlpatterns = [
url(r'^quotas/(?P<quota>[0-9a-f-]+)/delete$', item.QuotaDelete.as_view(),
name='event.items.quotas.delete'),
url(r'^quotas/add$', item.QuotaCreate.as_view(), name='event.items.quotas.add'),
url(r'^orders/(?P<code>[0-9A-Z]+)/$', orders.OrderDetail.as_view(), name='event.order'),
url(r'^orders/$', orders.OrderList.as_view(), name='event.orders'),
])),
]