Commit 3839871710172954c6aedbdeb5013f0bc40ed3ec

Authored by Sergio Oliveira
1 parent e483699e

Moved content from message-preview to search template

Signed-off-by: Daniel Henrique <danielhmarinho@gmail.com>
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Signed-off-by: Sergio Oliveira <seocam@seocam.com>
colab/search/templates/message-preview.html
@@ -1,3 +0,0 @@ @@ -1,3 +0,0 @@
1 -{% load i18n tz highlight search_preview_templates %}  
2 -{% get_search_preview_templates result as template_target %}  
3 -{% include template_target %}  
colab/search/templates/search/search.html
1 {% extends "base.html" %} 1 {% extends "base.html" %}
2 -{% load i18n highlight superarchives %} 2 +{% load i18n tz highlight superarchives search_preview_templates %}
3 {% load static from staticfiles %} 3 {% load static from staticfiles %}
4 4
5 {% block title %}{% trans 'search'|title %}{% endblock %} 5 {% block title %}{% trans 'search'|title %}{% endblock %}
@@ -70,7 +70,8 @@ We must use STATIC_URL because we have a language composing the URL @@ -70,7 +70,8 @@ We must use STATIC_URL because we have a language composing the URL
70 <div class="col-md-10 col-lg-10"> 70 <div class="col-md-10 col-lg-10">
71 <ul class="list-unstyled"> 71 <ul class="list-unstyled">
72 {% for result in page.object_list %} 72 {% for result in page.object_list %}
73 - {% include "message-preview.html" %} 73 + {% get_search_preview_templates result as template_target %}
  74 + {% include template_target %}
74 {% empty %} 75 {% empty %}
75 <li class="text-center"> 76 <li class="text-center">
76 {% trans "No results for your search." %} 77 {% trans "No results for your search." %}