diff options
Diffstat (limited to 'static/website/templates/ajax-keyword-search.html')
-rw-r--r-- | static/website/templates/ajax-keyword-search.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/static/website/templates/ajax-keyword-search.html b/static/website/templates/ajax-keyword-search.html index b4295c7..414ae81 100644 --- a/static/website/templates/ajax-keyword-search.html +++ b/static/website/templates/ajax-keyword-search.html @@ -1,3 +1,5 @@ +{% load helpers %} + {% if questions %} <br> <table class="table table-striped table-bordered table-hover"> @@ -48,7 +50,7 @@ <td> <span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.title }}"> - <a href="{% url 'website:get_question' question.id %}">{{ question.title|truncatechars:40 }}</a> + <a href="{% url 'website:get_question' question.id %}{% prettify question.title %}">{{ question.title|truncatechars:40 }}</a> </span> </td> |