forum: implement order by date for search

This commit is contained in:
2018-12-12 15:48:11 +01:00
committed by Skia
parent 721b22a1e9
commit 6891174935
2 changed files with 10 additions and 3 deletions

View File

@ -107,6 +107,7 @@ class BigCharFieldIndex(indexes.CharField):
class ForumMessageIndex(indexes.SearchIndex, indexes.Indexable):
text = BigCharFieldIndex(document=True, use_template=True)
auto = indexes.EdgeNgramField(use_template=True)
date = indexes.DateTimeField(model_attr="date")
def get_model(self):
return ForumMessage