I am making search for website with multiple languages. It's working fine, but when it comes to Russian, i get problems. Django doesn't process Russian characters. In template i have
<input type="text" name="q">
When i type russian text, like ванна,in my view function in request.POST['q']
i have that word correctly. Then i need to slugify this, but it just gives me empty string. Also i tried this answer, but then i get result vanna, when i need it to be the same Russian string. Maybe there is some way converting it back? Or any other solution?