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
13 lines
370 B
Python
13 lines
370 B
Python
from haystack import indexes
|
|
|
|
from .models import Assignment
|
|
|
|
|
|
class Index(indexes.SearchIndex, indexes.Indexable):
|
|
text = indexes.EdgeNgramField(document=True, use_template=True)
|
|
modelfilter_name = "Elections" # verbose_name of model
|
|
modelfilter_value = "assignments.assignment" # 'app_name.model_name'
|
|
|
|
def get_model(self):
|
|
return Assignment
|