Django Haystack : search for a term with and without accents
问题 I'm implementing a search system onto my django project, using django haystack. The problem is that some fields in my models have some french accents, and I would like to find the entries which contents the query with and without accents. I think the best Idea is to create a SearchIndex with both the fields with the accents, and the same field without the accents. Any idea or hint on this ? Here is some code Imagine the following models : Cars(models.Model): name = models.CharField() and the