{% extends base_template %} {% load i18n %} {% block title %}{{ block.super }} » {{ project.name }}{% for p in doc.parents %} » {{ p.title|striptags|safe }}{% endfor %} » {{ doc.title|striptags|safe }}{% endblock %} {% block content %}
{% if doc.prev or doc.next %} {% if doc.prev %} {% trans "Prev:" %} {{ doc.prev.title|safe }} {% endif %} {% if doc.next %} {% trans "Next:" %} {{ doc.next.title|safe }} {% endif %}
.
{% endif %}
{% block doc_body %} {{ doc.body|safe }} {% endblock %}
{% if doc.prev or doc.next %} {% if doc.prev %} {% trans "Prev:" %} {{ doc.prev.title|safe }} {% endif %} {% if doc.next %} {% trans "Next:" %} {{ doc.next.title|safe }} {% endif %}
.
{% endif %}
{% trans "Last update:" %} {{ update_date|date:"SHORT_DATETIME_FORMAT" }} (CET)
{% endblock content %} {% block sidebar %} {% block doc_toc %}

{% trans "Contents" %}

{{ doc.toc|safe }}
{% endblock %}

{% trans "Search" %}

{{ block.super }} {% endblock sidebar %}