Fix for bug #467, "Add explanatory copy to add/edit picture pages saying that tags are comma-separated"
This commit is contained in:
parent
88f20b58b2
commit
cee794a8f7
@ -26,7 +26,9 @@ class EditForm(wtforms.Form):
|
|||||||
description = wtforms.TextAreaField('Description of this work')
|
description = wtforms.TextAreaField('Description of this work')
|
||||||
tags = wtforms.TextField(
|
tags = wtforms.TextField(
|
||||||
_('Tags'),
|
_('Tags'),
|
||||||
[tag_length_validator])
|
[tag_length_validator],
|
||||||
|
description=_(
|
||||||
|
"Seperate tags by commas or spaces."))
|
||||||
slug = wtforms.TextField(
|
slug = wtforms.TextField(
|
||||||
_('Slug'),
|
_('Slug'),
|
||||||
[wtforms.validators.Required(message=_("The slug can't be empty"))],
|
[wtforms.validators.Required(message=_("The slug can't be empty"))],
|
||||||
|
@ -30,4 +30,6 @@ class SubmitStartForm(wtforms.Form):
|
|||||||
_('Description of this work'))
|
_('Description of this work'))
|
||||||
tags = wtforms.TextField(
|
tags = wtforms.TextField(
|
||||||
_('Tags'),
|
_('Tags'),
|
||||||
[tag_length_validator])
|
[tag_length_validator],
|
||||||
|
description=_(
|
||||||
|
"Seperate tags by commas or spaces."))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user