[Answer]-Django utf8 title not showing in admin

1👍

I expect the problem is that you’re using the slugify function, which explicitly strips out non-ASCII characters.

I’m not sure why you want to slugify the title in the first place, but you might want to look into the new awesome-slugify library, which deals correctly with those characters.

Leave a comment