Include comment field in OrderDetail view

This commit is contained in:
Tobias Kunze
2016-08-12 11:33:08 +02:00
parent 3eb581e55a
commit 6fcf393aba
6 changed files with 55 additions and 1 deletions

View File

@@ -77,6 +77,8 @@ urlpatterns = [
name='event.order.reissueinvoice'),
url(r'^orders/(?P<code>[0-9A-Z]+)/extend$', orders.OrderExtend.as_view(),
name='event.order.extend'),
url(r'^orders/(?P<code>[0-9A-Z]+)/comment$', orders.OrderComment.as_view(),
name='event.order.comment'),
url(r'^orders/(?P<code>[0-9A-Z]+)/$', orders.OrderDetail.as_view(), name='event.order'),
url(r'^orders/(?P<code>[0-9A-Z]+)/download/(?P<output>[^/]+)$', orders.OrderDownload.as_view(),
name='event.order.download'),