diff --git a/registrasion/forms.py b/registrasion/forms.py index f1527aa5aa5caf5cde755fcb9037bc0c21342e4d..7a1e1f12dbd23668dce9985b848baf50bd70a026 100644 --- a/registrasion/forms.py +++ b/registrasion/forms.py @@ -47,7 +47,10 @@ class _QuantityBoxProductsForm(_ProductsForm): @classmethod def set_fields(cls, category, products): for product in products: - help_text = "$%d -- %s" % (product.price, product.description) + if product.description: + help_text = "$%d each -- %s" % (product.price, product.description) + else: + help_text = "$%d each" % product.price field = forms.IntegerField( label=product.name,