1
{% extends 'sphinxdoc/base.html' %}
4
{{ app.name }} - {{ block.super }}
8
<h1>Documentation: {{ app.name }}</h1>
9
<div class="blogEntry">
10
<a href="/docs/">Documentation</a>
11
» <a href="{{ app.get_absolute_url }}">{{ app.name }}</a>
12
{% for p in doc.parents %}
13
» <a href="{{ p.link }}">{{ p.title|safe }}</a>
15
» {{ doc.title|safe }}
16
{% if doc.prev or doc.next %}
20
Prev: <a href="{{ doc.prev.link }}">{{ doc.prev.title|safe }}</a>
23
<div class="posRight">
25
Next: <a href="{{ doc.next.link }}">{{ doc.next.title|safe }}</a>
40
<div class="pagination-bottom">
41
{% if doc.prev or doc.next %}
44
Prev: <a href="{{ doc.prev.link }}">{{ doc.prev.title|safe }}</a>
47
<div class="posRight">
49
Next: <a href="{{ doc.next.link }}">{{ doc.next.title|safe }}</a>
55
<span class="small">Last update: {{ update_date|date:"Y-m-d H:i" }} (<a href="http://www.timeanddate.com/worldclock/city.html?n=37">CET</a>)</span>
58
{% endblock content %}