20 lines
401 B
Python
20 lines
401 B
Python
from haystack import indexes
|
|
|
|
from .models import Participation, Team, Video
|
|
|
|
|
|
class TeamIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
|
class Meta:
|
|
model = Team
|
|
|
|
|
|
class ParticipationIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
|
class Meta:
|
|
model = Participation
|
|
|
|
|
|
class VideoIndex(indexes.ModelSearchIndex, indexes.Indexable):
|
|
class Meta:
|
|
model = Video
|
|
|