Using the built-in slugify filter outside a template

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

  1. Built-in Slugify with filtering. by jcrawford 2 years, 10 months ago
  2. slugify js -> python by santuri 4 years, 11 months ago
  3. Automatically slugify slug fields in your models by Aliquip 4 years, 11 months ago
  4. Login + logout script from a nub by alandelevie 3 years, 1 month ago
  5. Simple login script from a nub by alandelevie 3 years, 1 month ago

Comments

obeattie (on February 28, 2007):

Yeah, I do this all the time too when importing stuff from APIs

#

canen (on February 28, 2007):

People just need to realize that filters are just functions. I usually use the striptags filter when sending emails.

#

(Forgotten your password?)