annotate downloads/search_indexes.py @ 842:b8c401cf99ca

For issue #77, add comments to contests.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Oct 2014 14:59:43 -0500
parents ad53d929281a
children cf9918328c64
rev   line source
bgneal@221 1 """Haystack search index for the downloads application."""
bgneal@753 2 from haystack import indexes
bgneal@221 3
bgneal@221 4 from downloads.models import Download
bgneal@221 5
bgneal@221 6
bgneal@753 7 class DownloadIndex(indexes.SearchIndex, indexes.Indexable):
bgneal@753 8 text = indexes.CharField(document=True, use_template=True)
bgneal@753 9 author = indexes.CharField(model_attr='user')
bgneal@753 10 pub_date = indexes.DateTimeField(model_attr='date_added')
bgneal@221 11
bgneal@753 12 def get_model(self):
bgneal@753 13 return Download
bgneal@753 14
bgneal@753 15 def index_queryset(self, using=None):
bgneal@221 16 return Download.public_objects.all()
bgneal@221 17
bgneal@277 18 def get_updated_field(self):
bgneal@277 19 return 'update_date'