Commit 6ead5d8942ba369e443c4a7bce37fa15d091cbd6
1 parent
f0f4d3f1
Exists in
master
and in
39 other branches
Added slugified field for author and title in thread search
Signed-off-by: Carlos Oliveira <carlospecter@gmail.com> Signed-off-by: Matheus Fernandes <matheus.souza.fernandes@gmail.com>
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
colab/super_archives/templates/search/indexes/super_archives/thread_text.txt
@@ -2,6 +2,9 @@ | @@ -2,6 +2,9 @@ | ||
2 | 2 | ||
3 | {% for message in object.message_set.iterator %} | 3 | {% for message in object.message_set.iterator %} |
4 | {{ message.title }} | 4 | {{ message.title }} |
5 | + {{ message.title|slugify }} | ||
5 | {{ message.author }} | 6 | {{ message.author }} |
7 | + {{ message.author|slugify }} | ||
8 | + {{ message.body }} | ||
6 | {{ message.body|slugify }} | 9 | {{ message.body|slugify }} |
7 | {% endfor %} | 10 | {% endfor %} |