sortowanie wyników uczniów w mailu dla nauczyciela
[edumed.git] / catalogue / search_indexes.py
1 import datetime
2 from haystack import indexes
3 from .models import Lesson
4
5
6 class LessonIndex(indexes.SearchIndex, indexes.Indexable):
7     text = indexes.CharField(document=True, use_template=True)
8
9     def get_model(self):
10         return Lesson