{% extends "base.html" %} {% load static %} {% load i18n %} {% load hilight %} {% block title %}{% translate 'Search' %}{% endblock %} {% block header_bar %} {% translate 'Search' %} {% endblock %} {% block content %}

{% translate 'Search result for' %} '{{ q }}'

{% for result in results %}

{{ result.title | hilight:tokens }}

{{ result.text | safe }}
{% empty %}

{% translate 'Nothing found' %}

{% endfor %} {% if pages > 1 %} {% endif %} {% endblock %}