mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Backend: Modify order information: Do not send email by default
This commit is contained in:
@@ -1329,7 +1329,7 @@ class OrderModifyInformation(OrderQuestionsViewMixin, OrderView):
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def other_form(self):
|
def other_form(self):
|
||||||
return OtherOperationsForm(prefix='other', order=self.order,
|
return OtherOperationsForm(prefix='other', order=self.order, initial={'notify': False},
|
||||||
data=self.request.POST if self.request.method == "POST" else None)
|
data=self.request.POST if self.request.method == "POST" else None)
|
||||||
|
|
||||||
def post(self, request, *args, **kwargs):
|
def post(self, request, *args, **kwargs):
|
||||||
|
|||||||
Reference in New Issue
Block a user