{% extends "wiki/base.html" %} {% load i18n %} {% load markup %} {% load paginator %} {% load wiki %} {% block contents %}

Search results

Wikis

{% if wikis %} {% for obj in wikis %} {% endfor %}
Name Description Long description
{{ obj.absolutename }} {{ obj.desc }} {{ obj.long_desc|default:"--"|truncatewords_html:4 }}
{% else %}

No wikis found.

{% endif %}

Pages

{% if pages %} {% for obj in pages %} {% endfor %}
Name Description Title Text
{{ obj.absolutename }} {{ obj.desc }} {{ obj.title }} {{ obj.get_content|wiki|truncatewords_html:4 }}
{% else %}

No pages found.

{% endif %}

Page contents

{% if pagecontents %} {% for pc in pagecontents %} {% endfor %}
Name Description Revision Title Text
{{ pc.page.absolutename }} {{ pc.page.desc }} r{{ pc.rev }} {{ pc.title|default:"--"|truncatewords_html:4 }} {{ pc|wiki|truncatewords_html:4 }}
{% else %}

No page contents found.

{% endif %}
{% endblock contents %}