You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910 |
- from unidecode import unidecode
- from django.template import defaultfilters
-
-
- def slugify(value):
- """
- Slugify a string (even if it contains non-ASCII chars)
- """
- return defaultfilters.slugify(
- unidecode(unicode(value)))
|