From b1fa21486987c4f131e30700a67da4eeca7a509e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 9 May 2019 14:44:06 +0200 Subject: [PATCH] Clarify a description --- src/pretix/base/models/items.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pretix/base/models/items.py b/src/pretix/base/models/items.py index 389460eff..cea6e0576 100644 --- a/src/pretix/base/models/items.py +++ b/src/pretix/base/models/items.py @@ -333,7 +333,9 @@ class Item(LoggedModel): require_bundling = models.BooleanField( verbose_name=_('Only sell this product as part of a bundle'), default=False, - help_text=_('If this option is set, the product will only be sold as part of bundle products.') + help_text=_('If this option is set, the product will only be sold as part of bundle products. Do ' + 'not check this option if you want to use this product as an add-on product, ' + 'but only for fixed bundles!') ) allow_cancel = models.BooleanField( verbose_name=_('Allow product to be canceled'),