Mercurial > public > sg101
annotate news/search_indexes.py @ 870:ee56c8c8cf98
More WIP on ssl_images management command and tests.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 15 Dec 2014 21:16:47 -0600 |
parents | ad53d929281a |
children | cf9918328c64 |
rev | line source |
---|---|
bgneal@219 | 1 """Haystack search index for the news application.""" |
bgneal@753 | 2 from haystack import indexes |
bgneal@392 | 3 |
bgneal@219 | 4 from news.models import Story |
bgneal@219 | 5 |
bgneal@219 | 6 |
bgneal@753 | 7 class StoryIndex(indexes.SearchIndex, indexes.Indexable): |
bgneal@753 | 8 text = indexes.CharField(document=True, use_template=True) |
bgneal@753 | 9 author = indexes.CharField(model_attr='submitter') |
bgneal@753 | 10 pub_date = indexes.DateTimeField(model_attr='date_submitted') |
bgneal@753 | 11 |
bgneal@753 | 12 def get_model(self): |
bgneal@753 | 13 return Story |
bgneal@219 | 14 |
bgneal@277 | 15 def get_updated_field(self): |
bgneal@277 | 16 return 'update_date' |