翻译默认Haystack表单模板的标题

时间:2019-06-03 19:32:19

标签: django python-2.7 django-haystack

我想将默认Django-Haystack搜索表单中的标题“ Search In:”转换为frensh'Chercher dans:'我找不到表单或模板。 谢谢。

在search_indxess.py中,我添加

from haystack.generic_views import SearchView 

然后在类PostIndex(indexes.SearchIndex,index.Indexable)中添加

def __init__(self, *args, **kwargs): 
    super(SearchForm, self).__init__(*args, **kwargs)            
    self.fields['search_in'].label = "Chercher dans:"

但是我有“未定义全局名称'SearchForm'”

0 个答案:

没有答案