From de7314edcc37c61ed5785c805f134d3227d9d676 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 20 Mar 2023 17:19:32 +0100 Subject: [PATCH] Tax rule editor: Fix label for "text on invoice" --- src/pretix/control/forms/event.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 50ace26a1a..b96568f9cb 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -1379,7 +1379,10 @@ class TaxRuleLineForm(I18nForm): invoice_text = I18nFormField( label=_('Text on invoice'), required=False, - widget=I18nTextInput + widget=I18nTextInput, + widget_kwargs=dict(attrs={ + 'placeholder': _('Text on invoice'), + }) )