Allow admin to manually change order email

This commit is contained in:
Raphael Michel
2016-09-01 21:51:41 +02:00
parent ae2d551d7d
commit a764e6f55b
7 changed files with 72 additions and 1 deletions

View File

@@ -81,6 +81,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]+)/contact$', orders.OrderContactChange.as_view(),
name='event.order.contact'),
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]+)/change$', orders.OrderChange.as_view(),