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

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

{% for article in articles %} {% empty%} {% endfor %}
{% 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 %}

{{ article.current_revision.content|get_content_snippet:search_query }}

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