{% extends "base.html" %} {% load i18n mezzanine_tags %} {% block meta_title %}{% trans "Search Results" %}{% endblock %} {% block title %}{% trans "Search Results" %}{% endblock %} {% block breadcrumb_menu %}
  • {% trans "Home" %} /
  • {% trans "Search Results" %}
  • {% endblock %} {% block main %}

    {% if results.paginator.count == 0 %} {% trans "No results were found matching your query: " %}{{ query }} {% else %} {% trans "Showing" %} {{ results.start_index }} {% trans "to" %} {{ results.end_index }} {% trans "of" %} {{ results.paginator.count }} {% trans "results matching your query:" %} {{ query }} {% endif %}

    {% for result in results.object_list %}
    {{ forloop.counter0|add:results.start_index }}) {{ result }}

    {{ result.description|truncatewords_html:20|safe }}

    {% trans "read more" %} {% endfor %}
    {% pagination_for results %} {% endblock %}