From 18678334608cba0fabf13476992617ac43f9f641 Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Thu, 14 Sep 2017 12:33:33 +0200 Subject: [PATCH] Fix haystack index imcomplete --- comments/search_indexes.py | 1 + templates/search/indexes/comments/comment_text.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/comments/search_indexes.py b/comments/search_indexes.py index 3ccccda8f..23575385c 100644 --- a/comments/search_indexes.py +++ b/comments/search_indexes.py @@ -7,6 +7,7 @@ from .models import Comment class CommentIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document=True, model_attr='comment_text', use_template=True) + authors = indexes.CharField(model_attr='author') date = indexes.DateTimeField(model_attr='date_submitted') def get_model(self): diff --git a/templates/search/indexes/comments/comment_text.txt b/templates/search/indexes/comments/comment_text.txt index ab1ca5595..e187fa7fe 100644 --- a/templates/search/indexes/comments/comment_text.txt +++ b/templates/search/indexes/comments/comment_text.txt @@ -1,2 +1,3 @@ {{object.comment_text}} {{object.date_submitted}} +{{object.author}} -- GitLab