forked from CGM_Public/pretix_original
Allow to add a comment when cancelling an order (#2580)
This commit is contained in:
@@ -167,6 +167,12 @@ class CancelForm(ForceQuotaConfirmationForm):
|
||||
initial=True,
|
||||
required=False
|
||||
)
|
||||
comment = forms.CharField(
|
||||
label=_('Comment (will be sent to the user)'),
|
||||
help_text=_('Will be included in the notification email when the respective placeholder is present in the '
|
||||
'configured email text.'),
|
||||
required=False,
|
||||
)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
Reference in New Issue
Block a user