So this is almost a duplicate of this question, except that I do want to use the slug for lookup.
My URLs look like this:
http://url.com/county/place-name
The unique combination of 'county' and 'place-name' is used to look up the database object, except that 'place-name' is stored in the database as 'Place Name'.
So if I don't store place-name in the database as a separate slug field, I would need to de-slugify it first, and only then then do lookup.
Is de-slugification safe/possible in Django? Or would I be better off adding a place-name slug field to my database, and populating it whenever a new object gets added?