1 2 3 4 5 6 7 8 | if city:
from django.template import defaultfilters
city_slug = defaultfilters.slugify(city)
state_slug = defaultfilters.slugify(state_abbr)
if state_slug:
location_slug = city_slug + '-' + state_slug
else:
location_slug = city_slug
|
More like this
- Built-in Slugify with filtering. by jcrawford 4 years, 1 month ago
- slugify js -> python by santuri 6 years, 2 months ago
- Simple login script from a nub by alandelevie 4 years, 5 months ago
- Slugify alternative by exogen 6 years, 1 month ago
- Convert newlines into <p> and </p> tags by jheasly 6 years, 1 month ago
Comments
Yeah, I do this all the time too when importing stuff from APIs
#
People just need to realize that filters are just functions. I usually use the striptags filter when sending emails.
#