Clarify help texts

This commit is contained in:
Raphael Michel
2017-02-15 18:07:17 +01:00
parent 9b7223c0e8
commit 0db927407d

View File

@@ -140,6 +140,9 @@ class Item(LoggedModel):
) )
default_price = models.DecimalField( default_price = models.DecimalField(
verbose_name=_("Default price"), verbose_name=_("Default price"),
help_text=_("If this product has multiple variations, you can set different prices for each of the "
"variations. If a variation does not have a special price or if you do not have variations, "
"this price will be used."),
max_digits=7, decimal_places=2, null=True max_digits=7, decimal_places=2, null=True
) )
free_price = models.BooleanField( free_price = models.BooleanField(
@@ -195,8 +198,9 @@ class Item(LoggedModel):
allow_cancel = models.BooleanField( allow_cancel = models.BooleanField(
verbose_name=_('Allow product to be canceled'), verbose_name=_('Allow product to be canceled'),
default=True, default=True,
help_text=_('If you deactivate this, an order including this product might not be canceled by the user. ' help_text=_('If this is active and the general event settings allo wit, orders containing this product can be '
'It may still be canceled by you.') 'canceled by the user until the order is paid for. Users cannot cancel paid orders on their own '
'and you can cancel orders at all times, regardless of this setting')
) )
class Meta: class Meta: