mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-10-31 23:04:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			889 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			889 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (C) 2020 by Animath
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| from haystack import indexes
 | |
| 
 | |
| from .models import Participation, Team, Tournament
 | |
| 
 | |
| 
 | |
| class TeamIndex(indexes.ModelSearchIndex, indexes.Indexable):
 | |
|     """
 | |
|     Index all teams by their name and trigram.
 | |
|     """
 | |
|     text = indexes.NgramField(document=True, use_template=True)
 | |
| 
 | |
|     class Meta:
 | |
|         model = Team
 | |
| 
 | |
| 
 | |
| class ParticipationIndex(indexes.ModelSearchIndex, indexes.Indexable):
 | |
|     """
 | |
|     Index all participations by their team name and team trigram.
 | |
|     """
 | |
|     text = indexes.NgramField(document=True, use_template=True)
 | |
| 
 | |
|     class Meta:
 | |
|         model = Participation
 | |
| 
 | |
| 
 | |
| class TournamentIndex(indexes.ModelSearchIndex, indexes.Indexable):
 | |
|     """
 | |
|     Index all tournaments by their name.
 | |
|     """
 | |
|     text = indexes.NgramField(document=True, use_template=True)
 | |
| 
 | |
|     class Meta:
 | |
|         model = Tournament
 |