mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-13 02:34:21 +01:00
Relative fees: Add disclaimer
This commit is contained in:
parent
c2e5dff72b
commit
dc6f8ee299
1 changed files with 12 additions and 2 deletions
|
@ -9,9 +9,19 @@ from pretix.control.views.event import EventSettingsViewMixin, EventSettingsForm
|
|||
|
||||
class ServiceFeeSettingsForm(SettingsForm):
|
||||
service_fee_abs = forms.DecimalField(label=_('Service fee'))
|
||||
service_fee_percent = forms.DecimalField(label=_('Service fee (%)'))
|
||||
service_fee_percent = forms.DecimalField(
|
||||
label=_('Service fee (%)'),
|
||||
help_text=_('Percentage of the order total. Note that this percentage will currently only '
|
||||
'be calculated on the summed price of sold tickets, not on other fees like e.'
|
||||
'g. shipping fees, if there are any.')
|
||||
)
|
||||
service_fee_abs_resellers = forms.DecimalField(label=_('Service fee with resellers'))
|
||||
service_fee_percent_resellers = forms.DecimalField(label=_('Service fee with resellers (%)'))
|
||||
service_fee_percent_resellers = forms.DecimalField(
|
||||
label=_('Service fee with resellers (%)'),
|
||||
help_text=_('Percentage of the order total. Note that this percentage will currently only '
|
||||
'be calculated on the summed price of sold tickets, not on other fees like e.'
|
||||
'g. shipping fees, if there are any.')
|
||||
)
|
||||
|
||||
|
||||
class SettingsView(EventSettingsViewMixin, EventSettingsFormView):
|
||||
|
|
Loading…
Reference in a new issue