two consecutive hyphens are okay
This commit is contained in:
parent
200ffe23ee
commit
e5ebddec09
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ class LocationSlugManager(models.Manager):
|
||||||
|
|
||||||
|
|
||||||
validate_slug = RegexValidator(
|
validate_slug = RegexValidator(
|
||||||
r'^[a-z0-9]+(-[a-z0-9]+)*\Z',
|
r'^[a-z0-9]+(--?[a-z0-9]+)*\Z',
|
||||||
# Translators: "letters" means latin letters: a-z and A-Z.
|
# Translators: "letters" means latin letters: a-z and A-Z.
|
||||||
_('Enter a valid location slug consisting of lowercase letters, numbers or hyphens, '
|
_('Enter a valid location slug consisting of lowercase letters, numbers or hyphens, '
|
||||||
'not starting or ending with hyphens or containing consecutive hyphens.'),
|
'not starting or ending with hyphens or containing consecutive hyphens.'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue