{% extends "wiki/base.html" %} {% load wiki_tags i18n humanize highlight %} {% load url from future %} {% block pagetitle %}{% trans "Search results for:" %} {{ search_query }}{% endblock %} {% block wiki_contents %}

{% trans "Search results for:" %} {{ search_query }}

{% with articles=page.object_list %} {% for article in articles %} {% with article=article.object %} {% endwith %} {% empty%} {% endfor %} {% endwith %}
{% trans "Title" %} {% trans "Last modified" %}
{% for urlpath in article.urlpath_set.all %} {{ article.current_revision.title }}
/{{ urlpath.path }}
{% empty %} {{ article.current_revision.title }} {% endfor %} {% if article.current_revision.deleted %} {% endif %} {% if article.current_revision.locked %} {% endif %}

{% if article.current_revision %}{% highlight article.current_revision.content with query html_tag "strong" max_length 400 %}{% endif %}

{{ article.current_revision.created|naturaltime }}
{% trans "There are no articles in this level" %}
{% include "wiki/includes/pagination.html" %} {% endblock %}