{% extends "combo/manager_base.html" %} {% load i18n %} {% block appbar %}

{% trans 'Pages' %}

{% trans 'New' %} {% endblock %} {% block content %} {% if object_list %}

{% blocktrans %} Use drag and drop with the ⣿ handles to reorder and change hierarchy of pages. {% endblocktrans %}

{% for page in object_list %}
{{ page.title }}
{% endfor %}
{% else %}
{% blocktrans %} This site doesn't have any page yet. Click on the "New" button in the top right of the page to add a first one. {% endblocktrans %}
{% endif %} {% endblock %}