{% extends 'base.html' %} {% load core_tags %} {% block title %}{{ page.title }}{% endblock %} {% block body %}

{{ page|class_name }}: {{ page.title }}

{% if page.get_ancestors.count > 1 %}

Ancestors

    {% for a in page.get_ancestors%} {% if a.is_root == False %}
  1. {{ a.specific|class_name }}: {{ a.title }}
  2. {% endif %} {% endfor %}
{% endif %}

Attributes

{{ page|json_dumps }}
{% if page.get_descendants.count %}

Descendants

{% endif %} {% endblock %}