{% extends "lfc/base.html" %} {% load i18n %} {% load lfc_tags %} {% load pagination_tags %} {% block title %}{{ block.super }}{% trans 'Search results' %}{% endblock %} {% block content %}

{% trans "Search results" %}

{% if lfc_context.text %} {{ lfc_context.text|safe }} {% endif %} {% if results %}

{% trans 'You searched for' %} "{{ request.REQUEST.q }}". {% blocktrans count results|length as counter %}There is one page found.{% plural %}There have been {{ counter }} pages found.{% endblocktrans %}

    {% for result in results %}
  1. {% for ancestor in result.get_ancestors_reverse %} {{ ancestor.title }} > {% endfor %} {{ result.title }}

    {% if result.description %}

    {{ result.description }} {% trans 'Read on' %}.

    {% endif %}
  2. {% endfor %}
{% else %}

{% trans 'There are no results.' %}

{% endif %} {% endblock %}