{% extends 'thorson_wiki/base.html' %} {% load highlight i18n staticfiles wikitags %} {% block addstyles %} {% endblock %} {% block content %}

{% trans "Search Results" %}


{% if query %} {% blocktrans count counter=page_obj.object_list|length %} You searched for '{{ query }}'. {{ counter }} result found. {% plural %} You searched for '{{ query}}'. {{ counter }} results found. {% endblocktrans %} {% for result in page_obj.object_list %} {% with article=result.object %}

{{ article.title }}

{% with content=article.content|markdown:article.namespace %} {% highlight content with query max_length 300 %} {% endwith %}
{% endwith %} {% endfor %} {% else %} {% trans "You did not submit a query." %} {% endif %} {% endblock %}