2020-10-15 10:57:20 +00:00
|
|
|
from haystack import indexes
|
|
|
|
|
|
|
|
from .models import Participation, Team, Video
|
|
|
|
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class TeamIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
2020-10-15 15:26:22 +00:00
|
|
|
text = indexes.NgramField(document=True, use_template=True)
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class Meta:
|
|
|
|
model = Team
|
2020-10-15 10:57:20 +00:00
|
|
|
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class ParticipationIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
2020-10-15 15:26:22 +00:00
|
|
|
text = indexes.NgramField(document=True, use_template=True)
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class Meta:
|
|
|
|
model = Participation
|
2020-10-15 10:57:20 +00:00
|
|
|
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class VideoIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
2020-10-15 15:26:22 +00:00
|
|
|
text = indexes.NgramField(document=True, use_template=True)
|
|
|
|
|
2020-10-15 14:29:50 +00:00
|
|
|
class Meta:
|
|
|
|
model = Video
|