fbf7d0e43d
* django templates * widgets * views * mppt * main_menu * projector 1.x api Sorted all imports Add a ending slash to each url with a redirect view
14 lines
410 B
Python
14 lines
410 B
Python
from haystack import indexes
|
|
|
|
from .models import User
|
|
|
|
|
|
class Index(indexes.SearchIndex, indexes.Indexable):
|
|
text = indexes.EdgeNgramField(document=True, use_template=True)
|
|
text = indexes.EdgeNgramField(document=True, use_template=True)
|
|
modelfilter_name = "Users" # verbose_name of model
|
|
modelfilter_value = "users.user" # 'app_name.model_name'
|
|
|
|
def get_model(self):
|
|
return User
|