Commit 6ead5d8942ba369e443c4a7bce37fa15d091cbd6

Authored by Carlos Coêlho
1 parent f0f4d3f1

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>
colab/super_archives/templates/search/indexes/super_archives/thread_text.txt
... ... @@ -2,6 +2,9 @@
2 2  
3 3 {% for message in object.message_set.iterator %}
4 4 {{ message.title }}
  5 + {{ message.title|slugify }}
5 6 {{ message.author }}
  7 + {{ message.author|slugify }}
  8 + {{ message.body }}
6 9 {{ message.body|slugify }}
7 10 {% endfor %}
... ...