{% extends 'base.html' %} {% load docpage_extras %} {% load bleach %} {% block title %} {{ currentdocpage.title }} - {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block sidebar %}
{% endblock %} {% block content %}
{% if 'documentation.change_docpage' in perms %} Page overview Add Edit {% endif %}
{% if search_results != None %}
{% if search_results %} {% for result in search_results %}
{{ result.title }}
{{ result.headline|clean }}
{% endfor %} {% else %}
There are no matches for {{ query }}.
{% endif %}
{% else %}
{{ currentdocpage.content|md2html }}
{% if currentdocpage.previous %} Previous section {% endif %}
{% if currentdocpage.next %} Next section {% endif %}
{% endif %} {% endblock %}