Improve help texts

This commit is contained in:
Raphael Michel
2017-07-07 10:10:43 +02:00
parent 554284ac67
commit 95e716b8ce
2 changed files with 3 additions and 3 deletions

View File

@@ -96,12 +96,12 @@ class Event(LoggedModel):
presale_end = models.DateTimeField(
null=True, blank=True,
verbose_name=_("End of presale"),
help_text=_("No products will be sold after this date."),
help_text=_("Optional. No products will be sold after this date."),
)
presale_start = models.DateTimeField(
null=True, blank=True,
verbose_name=_("Start of presale"),
help_text=_("No products will be sold before this date."),
help_text=_("Optional. No products will be sold before this date."),
)
location = I18nTextField(
null=True, blank=True,